1-2: Complete MOV_RM_TF_R decoding
This commit is contained in:
parent
5f9c6a8fdf
commit
eb2c1cb0f9
7 changed files with 293 additions and 0 deletions
22
1-2/listing-40.asm
Normal file
22
1-2/listing-40.asm
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
bits 16
|
||||
|
||||
; Signed displacements
|
||||
mov ax, [bx + di - 37]
|
||||
mov [si - 300], cx
|
||||
mov dx, [bx - 32]
|
||||
|
||||
; Explicit sizes
|
||||
mov [bp + di], byte 7
|
||||
mov [di + 901], word 347
|
||||
|
||||
; Direct address
|
||||
mov bp, [5]
|
||||
mov bx, [3458]
|
||||
|
||||
; Memory-to-accumulator test
|
||||
mov ax, [2555]
|
||||
mov ax, [16]
|
||||
|
||||
; Accumulator-to-memory test
|
||||
mov [2554], ax
|
||||
mov [15], ax
|
||||
Loading…
Add table
Add a link
Reference in a new issue