Hicks * 16 Jan 2022 15:00:17
Copying a block from one tab to the other will be a very convenient feature. The need to export/import is usable but a little bit heavy.
Any technical difficulties?
Any technical difficulties?
dev = 1 texture = &1c00 org &100 [...] ; your questionable code ; End of source IF dev ; When dev=0, source size won't be artificially changed. SKIP texture - $ ; Mimick "LIMIT texture" end
If $ is greater than 'texture', the argument is negative, hence assemblage error, which is what we want (to be warned about the overlap).
If $ is less than 'texture', no problemo.
If $ is equal to 'texture', the argument is 0, which is fine (last opcode emitted at texture-1). SKIP 0 doesn't do anything, as expected.