1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-16 21:07:56 +00:00
kickc/src/test/ref/arrays-init.sym

11 lines
257 B
Plaintext
Raw Normal View History

(label) @1
(label) @begin
(label) @end
(const byte*) SCREEN = (byte*) 1024
2019-12-21 09:38:44 +00:00
(const byte*) b[(number) 3] = { fill( 3, 0) }
(const byte*) c[] = { (byte) 'c', (byte) 'm', (byte) 'l' }
2020-02-06 21:52:23 +00:00
(const byte*) d[] = (byte*) "cml"z
(void()) main()
(label) main::@return