1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-03 17:29:33 +00:00
SixtyPical/eg/compare.60pical
2014-04-01 17:00:16 +01:00

15 lines
204 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
if beq {
lda m_low
cmp n_low
} else {
}
}