сборка - нужно поменять 2 вар, чтобы добраться до третьей вер - PullRequest
0 голосов
/ 07 ноября 2018

У меня есть следующий код:

org  100h
jmp start
num1    dw 7
static_num1_ptr    dw  0;
static_num1_ptr_ptr    dw  0;

start:
; Make the "static" code print 7 by only changing the above two
; definitions. Do NOT add/change the next 5 lines
    PRINTN   "Should print 7"      
    mov     bx,static_num1_ptr_ptr
    mov     bx,[bx]
    mov     ax,[bx] 
    call    print_num    
    PRINTN

Кто-нибудь может мне помочь, что изменить в static_num1_ptr и static_num1_ptr_ptr для печати 7 (num1)?

...