1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-20 02:32:36 +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() {
signed byte b = -127-127;
signed byte b = -400;
byte* SCREEN = $0400;
*SCREEN = (byte)b;
}