CTRDG_WriteAgbSram

Syntax

#include <nitro/ctrdg.h>
void CTRDG_WriteAgbSram(u32 dst, const void* src, u32 size);
  
Corresponding AGB function: void WriteSram(u8 *dst,u8 *src,u32 size)

Arguments

dst Destination SRAM address (address on the AGB memory map).
src Source work area address.
size Size of data to be written in bytes.

Return Values

None.

Description

Writes data of the size given by size into the SRAM destination address given by dst from the work area address specified by src.

The access cycle setting is created in the function and does not need to be set in advance.

Note: The cartridge bus is locked for a set period by this function.
Note that the AGB backup device cannot be accessed normally with IS-NITRO-DEBUGGER version 1.66 or earlier.

See Also

CTRDG_WriteAgbSramAsync

Revision History

2006/05/25 Added a description that the AGB backup device cannot be accessed normally with IS-NITRO-DEBUGGER version 1.66 or earlier.
2006/04/07 Initial version.


CONFIDENTIAL