Move AT28 and TRS80 drivers to higher blocknos

I'm reserving the 100-200 range for non-bootstrapping needs.
This commit is contained in:
Virgil Dupras 2020-04-29 21:00:45 -04:00
parent 0cf26547ff
commit 0044011f06
7 changed files with 7 additions and 8 deletions

View File

@ -3,12 +3,11 @@ MASTER INDEX
3 Usage 30 Dictionary
70 Implementation notes 100 Block editor
120 Linker 140 Addressed devices
150 AT28 Driver
200 Z80 assembler 260 Cross compilation
280 Z80 boot code 350 ACIA driver
370 SD Card driver 390 Inner core
420 Core words
420 Core words 480 AT28 Driver
490 TRS80 Drivers

View File

@ -3,4 +3,4 @@ AT28 Driver
Write to an AT28 EEPROM while making sure that proper timing
is followed and verify data integrity.
Load with "151 LOAD"
Load with "481 LOAD"

View File

View File

@ -4,5 +4,5 @@ Drivers for the TRS-80 keyboard, video and floppy. At the
moment, they are thin layer over the drivers provided by
TRSDOS' SVC.
Load the Z80 words with "162 LOAD" and the high level part
with "164 LOAD".
Load the Z80 words with "492 LOAD" and the high level part
with "494 LOAD".

View File

View File

@ -46,7 +46,7 @@ Addressed devices are at B140. To know what you have to paste, open the loader
block (B142) and see what blocks it loads. For each of the blocks, copy/paste
the code in your interpreter.
Do the same thing with the AT28 driver (B150)
Do the same thing with the AT28 driver (B480)
If you're doing the real thing and not using the emulator, pasting so much code
at once might freeze up the RC2014, so it is recommended that you use

View File

@ -12,7 +12,7 @@ CURRENT @ XCURRENT !
H@ 256 /MOD 2 PC! 2 PC!
0x3000 BIN( !
282 LOAD ( boot.z80 )
162 LOAD ( trs80.z80 )
492 LOAD ( trs80.z80 )
393 LOAD ( icore )
(entry) _
( Update LATEST )