mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-30 15:36:32 +00:00
Use const arrays on cartridge targets (2)
This commit is contained in:
parent
892c9ec8ff
commit
fae64c52a1
@ -53,9 +53,9 @@ interrupt void on_nmi() {
|
|||||||
nmi()
|
nmi()
|
||||||
}
|
}
|
||||||
|
|
||||||
array nmi_vector @$FFFA = @word [on_nmi.addr]
|
const array nmi_vector @$FFFA = @word [on_nmi.addr]
|
||||||
|
|
||||||
array reset_vector @$FFFC = @word [on_reset.addr]
|
const array reset_vector @$FFFC = @word [on_reset.addr]
|
||||||
|
|
||||||
array irq_vector @$FFFE = @word [on_irq.addr]
|
const array irq_vector @$FFFE = @word [on_irq.addr]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user