collapseos/tools/tests/zasm/test6.asm

13 lines
281 B
NASM
Raw Normal View History

2019-05-18 03:23:16 +10:00
.equ RAMSTART 0x4000
.equ ACIA_CTL 0x80 ; Control and status. RS off.
.equ ACIA_IO 0x81 ; Transmit. RS on.
2019-05-17 11:15:00 +10:00
#include "core.asm"
2019-05-18 03:23:16 +10:00
#include "parse.asm"
.equ ACIA_RAMSTART RAMSTART
#include "acia.asm"
2019-05-18 04:07:07 +10:00
.equ BLOCKDEV_RAMSTART ACIA_RAMEND
.equ BLOCKDEV_COUNT 1
#include "blockdev.asm"