mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-19 13:32:58 +00:00
15 lines
290 B
Plaintext
15 lines
290 B
Plaintext
|
;ACME 0.97
|
||
|
*=$1000
|
||
|
; these must throw errors:
|
||
|
!by -129, 256
|
||
|
!wo -32769, 65536
|
||
|
!24 -0x800001, 16777216
|
||
|
; 32-bit values are not range checked atm:
|
||
|
!32 -0x80000001, 0x100000000
|
||
|
|
||
|
; these must work:
|
||
|
!by -128, 255
|
||
|
!wo -32768, 65535
|
||
|
!24 -0x800000, 16777215
|
||
|
!32 -0x80000000, 0xffffffff
|