Files
6502-cpu-monitor/sbc.asm
2017-07-09 16:52:18 -07:00

37 lines
1.0 KiB
NASM
Executable File

;---------------------------------------------------------------------
; 6502 Monitor
; Modified for RC2014
; Changes are copyright Ben Chong and freely licensed to the community
;
; ----------------- assembly instructions ----------------------------
; This version is assembled using asmx in the following way:
; asmx -l -b 8000h-ffffh -e -C 6502 sbc.asm
;
;
; Assemble the sections of the Monitor
;
.org $f800
; The following files should NOT define absolute addresses
; Intel HEX file handler
.include upload.asm
; Change this line according to the type of UART board
; .include rruart.asm ; uart init
.include 16c550.asm
; .include 16c750.asm
; .include 6850.asm
; .include 16c550_irq.asm
; .include 6551.asm
; .include 6551_irq.asm
.include sbcmon.asm ; actual monitor
; -----------------------------
; Only this file defines absolute addresses
.include reset.asm ; Reset & IRQ handler
.end