mirror of
https://github.com/irmen/prog8.git
synced 2026-04-19 20:16:51 +00:00
22 lines
289 B
Lua
22 lines
289 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
^^Mblock mb = 4000
|
|
|
|
uword @shared temp
|
|
temp = mb
|
|
temp += 64
|
|
|
|
cx16.r0 = mb
|
|
temp = cx16.r0
|
|
temp += 64
|
|
}
|
|
|
|
struct Mblock {
|
|
uword size
|
|
bool free
|
|
}
|
|
}
|