mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
15 lines
201 B
Plaintext
15 lines
201 B
Plaintext
|
reserve byte m_high
|
||
|
reserve byte m_low
|
||
|
reserve byte n_high
|
||
|
reserve byte n_low
|
||
|
|
||
|
routine compare_16_bit {
|
||
|
lda m_high
|
||
|
cmp n_high
|
||
|
beq {
|
||
|
lda m_low
|
||
|
cmp n_low
|
||
|
} else {
|
||
|
}
|
||
|
}
|