mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
15 lines
272 B
Lua
15 lines
272 B
Lua
main {
|
|
sub start() {
|
|
const ubyte HEIGHT=240
|
|
uword large = 320*240/8/8
|
|
thing(large)
|
|
thing(320*240/8/8)
|
|
thing(320*HEIGHT/8/8)
|
|
thing(320*HEIGHT) ; overflow
|
|
}
|
|
|
|
sub thing(uword value) {
|
|
value++
|
|
}
|
|
}
|