Trying to get Immediate to work

This commit is contained in:
Daniele Verducci (ZenPenguin)
2020-12-15 17:34:50 +01:00
parent fb83094158
commit f1e7622e17
5 changed files with 21 additions and 10 deletions

View File

@ -0,0 +1,4 @@
# Dev-headers
This directory contains the ASM files to be used with ADB.
ADB (Assembly Debug Bridge) is the system to hot load code into PAT80 without needing to flash a rom chip. It works by selecting ADB command in the Memory Monitor running from ROM and sending the binary file via the Python Terminal Emulator (CTRL+A).
The binary file must be compiled using files in this folder because these files contain an instruction to set the starting memory address to the address used by the Monitor to load the application data into RAM.

View File

@ -0,0 +1,2 @@
org 0xA000 ; Set starting position to ram
include '../bios/main.asm'