Compare commits

..

No commits in common. "main" and "v3.0" have entirely different histories.
main ... v3.0

2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ Sometimes it would be useful to run machine code directly from ZX BASIC without
This Makefile will generate a ZX BASIC .tap file with a REM statement containing the machine code, and will automatically run it. Simply amend the code in `code.asm` and run `make`. The file `program.tap` will be created which can be loaded in an emulator or real Spectrum. This Makefile will generate a ZX BASIC .tap file with a REM statement containing the machine code, and will automatically run it. Simply amend the code in `code.asm` and run `make`. The file `program.tap` will be created which can be loaded in an emulator or real Spectrum.
The included BASIC routine will CLEAR 32767 and set BORDER and PAPER to black and INK to white. Amend the `remload.asm` routine if this is not desired. The included BASIC routine will CLEAR 59999 and set BORDER and PAPER to black and INK to white. Amend the `remload.asm` routine if this is not desired.
## Requirements ## Requirements

View File

@ -31,10 +31,10 @@ ink:
db ':' db ':'
clear: clear:
db #fd, "32767" ;CLEAR 32767 - presumably code will be loaded somewhere? db #fd, "59999" ;CLEAR 59999 - presumably code will be loaded somewhere?
db #0e db #0e
db 0,0 db 0,0
dw 32767 dw 59999
db 0 db 0
db ':' db ':'