1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-08-09 04:25:12 +00:00

Fixed number range test

This commit is contained in:
jespergravgaard
2019-05-24 18:02:42 +02:00
parent 999afdcbc7
commit 3376a462fc

View File

@@ -1,5 +1,5 @@
void main() { void main() {
signed byte b = -127-127; signed byte b = -400;
byte* SCREEN = $0400; byte* SCREEN = $0400;
*SCREEN = (byte)b; *SCREEN = (byte)b;
} }