(%inc) ( n reg -- )
CPU x86 compiler backend

Next:decr-stack-reg ( n -- )


Vocabulary
cpu.x86

Inputs
na number
rega register symbol


Outputs
None

Word description
Emits machine code for increasing or decreasing the given register a number of cell sizes bytes.

Examples
USING: cpu.x86 make prettyprint ; [ 8 ECX (%inc) ] B{ } make disassemble
00000000615e5140: 83c140 add ecx, 0x40


Definition