Hacker News new | ask | show | jobs
by swetland 5192 days ago
Instructions can be 1-3 words depending on opcode and operand types. I was using the skip register to avoid having to decode instructions just to skip 'em. Turns out that my operand decoder is side-effecty (adjusts SP for PUSH/POP operands), so I had to go this route anyway. Code updated.
1 comments

Ah, thanks. I forgot about that.