woz64/hardware/ram.asm

31 lines
615 B
NASM
Raw Normal View History

2020-01-20 07:32:37 +00:00
#importonce
.filenamespace Ram
// ========================================================
// ////// CONSTANTS ///////////////////////////////////////
// ========================================================
// ========================================================
// ////// METHODS /////////////////////////////////////////
// ========================================================
* = * "Ram HW"
init: {
// Clear Zero Page
lda #$00
tay
!:
sta $0002,y
sta $0200,y
sta $0300,y
iny
bne !-
rts
}