2024-10-13 19:37:25 +02:00
|
|
|
%option no_sysinit
|
|
|
|
%zeropage basicsafe
|
|
|
|
|
2024-10-18 22:22:34 +02:00
|
|
|
|
2024-10-07 19:17:37 +02:00
|
|
|
main {
|
2024-10-16 18:36:19 +02:00
|
|
|
sub start() {
|
2024-10-26 00:30:14 +02:00
|
|
|
str @alignword @shared name = "wordaligned"
|
|
|
|
str @alignpage @shared @nozp name2 = "pagealigned"
|
|
|
|
ubyte[20] @alignword @shared array1
|
|
|
|
ubyte[20] @alignword @shared array2
|
|
|
|
ubyte[20] @alignpage @shared array3
|
|
|
|
ubyte[20] @alignpage @shared array4
|
|
|
|
ubyte[] @alignword @shared array5 = [1,2,3,4]
|
|
|
|
ubyte[] @alignword @shared array6 = [1,2,3,4]
|
|
|
|
ubyte[] @alignpage @shared array7 = [1,2,3,4]
|
|
|
|
ubyte[] @alignpage @shared array8 = [1,2,3,4]
|
|
|
|
uword[20] @alignword @split @shared array9
|
|
|
|
uword[] @alignword @split @shared array10 = [1111,2222,3333,4444]
|
2024-10-13 04:20:57 +02:00
|
|
|
}
|
2024-09-14 23:17:26 +02:00
|
|
|
}
|