A symbol table is now generated, so the simulation can show the names
[sixpic.git] / tests / arrays / rom.c
blobe35efe2b617925e148c4538af2ec386c66e8591b
1 // to test rom_get, the data is contained in dummy.hex
2 byte x = 2 + 4;
3 int16 y = rom_get(#x5000);
4 int16 z = (y << 8) | rom_get(#x5001);
5 z;