blob: f701c2b7660f1b74d832220c0c2afe37e7ba213a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.segment "HEADER"
.byte 'N', 'E', 'S', $1A
.byte $02
.byte $01
.byte $00
.byte $00
.segment "CODE"
.ifndef __NASM__
.macro __fallthrough__ arg
lda #0
.endmacro
.endif
lda #1
|