CALL JJDSAVE
Contents |
Effect
Saves a specified area of MSX memory as pure binary file (without BLOAD header) to the floppy disk inserted in drive A.
Syntax
CALL JJDSAVE ("<Filename>",<StartAddress>,<EndAddress>,S)
Parameters
<Filename> is the name of binary file to save. The format is 8 characters followed by a point and an extension with 3 characters. (Not case sensitive)
<StartAddress> and <EndAddress> are used to specify the area of the computer RAM (or VRAM).
The parameter S is used to save the contents of VRAM - This can be done in any screen mode but only the active pages are valid when the screen mode is higher than 4.
Examples
CALL JJDSAVE ("TEST.BIN",&HC000,&HD0FF)
CALL JJDSAVE ("PICTURE.SC2",&H0,&H3FFF,S)