1 2 3 4 5 6 7 8 9 10 11 12
org 0x1000 defb "hell" defb 'o' + 0x80 org 0x2000 str "hello" assert memory(0x1000) == memory(0x2000) assert memory(0x1001) == memory(0x2001) assert memory(0x1002) == memory(0x2002) assert memory(0x1003) == memory(0x2003)