mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-08-09 04:25:12 +00:00
7 lines
136 B
C
7 lines
136 B
C
// Test that bitwise NOT (~) is handled correctly
|
|
|
|
void main() {
|
|
const char* screen = 0x0400;
|
|
char b = ~0x10;
|
|
*screen = b;
|
|
} |