prog8/examples/test.p8
Irmen de Jong 885df9156f todo
2023-09-19 00:08:17 +02:00

15 lines
425 B
Lua

main {
uword[] pages = [ &page_credits.chars_1]
sub start() {
; cx16.r0 = pages[0] ; TODO fix IR compiler error undefined symbol pages
uword @shared foo = pages[0] ; TODO fix IR compiler error no chunk with label 'page_credits.chars_1' (caused by optimizer)
}
}
page_credits {
ubyte[] chars_1 = [11]
; TODO fix IR compiler crash when this array is moved into main block itself
}