Compare commits
No commits in common. "be861f6a136f0979f176f4ef394492e811380704" and "f560e63a5030fc8b3241ab956775a82cde528683" have entirely different histories.
be861f6a13
...
f560e63a50
2
Makefile
2
Makefile
@ -18,7 +18,7 @@ bodybincs: bodybin ac
|
||||
cp bodybin bodybincs
|
||||
./ac bodybincs
|
||||
|
||||
bodybin: remload.asm code.asm
|
||||
bodybin: remload.asm
|
||||
pasmo remload.asm bodybin
|
||||
|
||||
ac: append_checksum.c
|
||||
|
11
README.md
11
README.md
@ -1,11 +0,0 @@
|
||||
# ZX Spectrum REM statement machine code loader
|
||||
|
||||
Sometimes it would be useful to run machine code directly from ZX BASIC without having to load a CODE block or use lots of POKE and DATA statements. For example, you could add code for a fast loader or headerless loading block.
|
||||
|
||||
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 59999 and set BORDER and PAPER to black and INK to white. Amend the `remload.asm` routine if this is not desired.
|
||||
|
||||
## Requirements
|
||||
|
||||
To use this, you need to install `make`, `pasmo`, `dd` and a C compiler.
|
@ -53,7 +53,8 @@ remcode:
|
||||
db #ea ;REM
|
||||
|
||||
code:
|
||||
INCLUDE code.asm
|
||||
ld bc, 42 ;your code goes here
|
||||
ret
|
||||
|
||||
enter:
|
||||
db #0d
|
||||
|
Loading…
x
Reference in New Issue
Block a user