1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/arrays-init.sym
2020-02-06 22:52:23 +01:00

11 lines
257 B
Plaintext

(label) @1
(label) @begin
(label) @end
(const byte*) SCREEN = (byte*) 1024
(const byte*) b[(number) 3] = { fill( 3, 0) }
(const byte*) c[] = { (byte) 'c', (byte) 'm', (byte) 'l' }
(const byte*) d[] = (byte*) "cml"z
(void()) main()
(label) main::@return