User contributions
Jump to navigation
Jump to search
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 05:06, 14 March 2017 (diff | hist) (+331) Assembler:Commands:PUSHFD
- 05:03, 14 March 2017 (diff | hist) (+28) Assembler:Commands:PUSHF
- 05:01, 14 March 2017 (diff | hist) (+303) Assembler:Commands:PUSHF
- 04:56, 14 March 2017 (diff | hist) (+90) Assembler:Commands:PUSH
- 04:51, 14 March 2017 (diff | hist) (+350) Assembler:Commands:POP
- 04:48, 14 March 2017 (diff | hist) (+230) Assembler:Commands:PUSH
- 04:45, 14 March 2017 (diff | hist) (+88) Assembler:Commands:MOV
- 04:43, 14 March 2017 (diff | hist) (+50) Assembler (→External links)
- 04:41, 14 March 2017 (diff | hist) (+489) Assembler:Commands:MOV
- 04:37, 14 March 2017 (diff | hist) (-8) Assembler:Commands:CALL
- 04:36, 14 March 2017 (diff | hist) (-8) Assembler:Commands:JMP
- 04:26, 14 March 2017 (diff | hist) (+16) Assembler:Commands:DIV
- 04:23, 14 March 2017 (diff | hist) (-447) Assembler:Commands:DIV
- 04:23, 14 March 2017 (diff | hist) (-311) Assembler:Commands:MUL
- 04:22, 14 March 2017 (diff | hist) (+136) Assembler:Commands:DIV
- 04:20, 14 March 2017 (diff | hist) (+311) Assembler:Commands:MUL
- 04:20, 14 March 2017 (diff | hist) (+311) Assembler:Commands:DIV
- 04:06, 14 March 2017 (diff | hist) (+163) Assembler:Commands:MUL (→Examples)
- 04:05, 14 March 2017 (diff | hist) (+2,573) N Assembler:Commands:DIV (Created page with ''''command''' div ''operand'' Divids the data register (high) and the accumulator register (low) by the operand. Placing the quotient in the accumulator register and the remaind…')
- 03:37, 14 March 2017 (diff | hist) (+2,304) N Assembler:Commands:MUL (Created page with ''''command''' mul ''operand'' Multiplies the operand by the data register Placing the high value in the data register and the low value in the accumulator register. Performs an…')
- 03:18, 14 March 2017 (diff | hist) (+97) Assembler (→Opcodes)
- 19:34, 13 March 2017 (diff | hist) (+27) Assembler:Commands:INC
- 19:34, 13 March 2017 (diff | hist) (+1,475) N Assembler:Commands:DEC (Created page with ''''command''' dec ''operand'' Decreases the operand by one. Subtracts 1 from the operand, while preserving the state of the '''CF''' flag. The operand can be a register or a m…')
- 16:57, 13 March 2017 (diff | hist) (+43) Assembler:Commands:SUB (→Examples)
- 16:57, 13 March 2017 (diff | hist) (+43) Assembler:Commands:ADD (→Examples)
- 16:56, 13 March 2017 (diff | hist) (+1,447) N Assembler:Commands:INC (Created page with ''''command''' inc ''operand'' Increases the operand by one. Adds 1 to the operand, while preserving the state of the '''CF''' flag. The operand can be a register or a memory l…')
- 16:37, 13 March 2017 (diff | hist) (+1,950) N Assembler:Commands:SUB (Created page with ''''command''' sub ''destination'', ''source'' Subtracts the source from the destination. Subtracts the second operand (source operand) from the first operand (destination opera…')
- 16:31, 13 March 2017 (diff | hist) (+111) Assembler:Commands:ADD
- 16:25, 13 March 2017 (diff | hist) (+1,866) N Assembler:Commands:ADD (Created page with ''''command''' add ''destination'', ''source'' Adds the source to the destination. Used for adding integer operands. Adds the first operand (destination operand) and the second …')
- 16:08, 13 March 2017 (diff | hist) (+1,110) N Assembler:Commands:MOV (Created page with ''''command''' mov ''mnemonic'' ''destination'', ''source'' Sets the destination to the source. === Command Parameters === {|width="85%" cellpadding="10%" cellpadding="5%" cell…')
- 10:39, 13 March 2017 (diff | hist) (+943) N Assembler:Commands:PUSHAD (Created page with ''''command''' pushad This instruction PUSHes all the general purpose registers onto the stack in the following order: '''EAX''', '''ECX''', '''EDX''…')
- 10:37, 13 March 2017 (diff | hist) (+932) N Assembler:Commands:PUSHA (Created page with ''''command''' pusha This instruction PUSHes all the general purpose registers onto the stack in the following order: '''AX''', '''CX''', '''DX''', '…')
- 10:34, 13 March 2017 (diff | hist) (+606) N Assembler:Commands:PUSHALL (Created page with ''''command''' pushall Assembles as PUSHAD. Note: Not available in 64 bit mode. === Command Parameters === <none> == Examples == pushall …')
- 10:34, 13 March 2017 (diff | hist) (+37) Assembler:Commands:POPALL
- 10:32, 13 March 2017 (diff | hist) (+867) N Assembler:Commands:POPAD (Created page with ''''command''' popad POPs all the general purpose registers off the stack in the reverse order of PUSHAD. That is '''EDI…')
- 10:32, 13 March 2017 (diff | hist) (+565) N Assembler:Commands:POPALL (Created page with ''''command''' popall Assembles as POPAD. === Command Parameters === <none> == Examples == popall == See also == * Assembler * [[Chea…')
- 10:26, 13 March 2017 (diff | hist) (+853) N Assembler:Commands:POPA (Created page with ''''command''' popa POPs all the general purpose registers off the stack in the reverse order of PUSHA. That is '''DI''',…')
- 10:22, 13 March 2017 (diff | hist) (+191) Assembler:Commands:POPFD
- 10:22, 13 March 2017 (diff | hist) (+191) Assembler:Commands:POPFQ
- 10:20, 13 March 2017 (diff | hist) (+189) Assembler:Commands:POPF
- 10:19, 13 March 2017 (diff | hist) (+187) Assembler:Commands:POP
- 10:01, 13 March 2017 (diff | hist) (+790) N Assembler:Commands:RET (Created page with ''''command''' ret ''operand'' Returns from a CALL optionally removing, operand number of, bytes from the stack. This is used for POPing values passed, to the CALL, from the stac…')
- 09:50, 13 March 2017 (diff | hist) (-5) Assembler:Commands:JMP
- 09:50, 13 March 2017 (diff | hist) (+2) Assembler:Commands:CALL
- 09:47, 13 March 2017 (diff | hist) (+48) Assembler:Commands:CALL
- 09:44, 13 March 2017 (diff | hist) (+2,351) N Assembler:Commands:CALL (Created page with ''''command''' call ''mnemonic'' ''operand'' Calls the given operand (address or function). A RET must be hit for a CALL to work properly, best to use JMPs if unsure. === Comman…')
- 09:43, 13 March 2017 (diff | hist) (+5) Assembler:Commands:JMP
- 09:42, 13 March 2017 (diff | hist) (0) File:Assembler.CALL.01.png (uploaded a new version of "File:Assembler.CALL.01.png") (current)
- 09:40, 13 March 2017 (diff | hist) (0) File:Assembler.CALL.01.png (uploaded a new version of "File:Assembler.CALL.01.png")
- 09:34, 13 March 2017 (diff | hist) (0) N File:Assembler.CALL.01.png
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)