;Sa se realizeze un program care sa incarce prin adresari imediate const. 22 la adresa 20 si const. 8877 la adresa 21.
.radix 16         ; Numerele din program vor fi în baza 16
.model small
.stack 100h       ; Dimensiunea stivei este 100h = 256 octeţi
.code             
   start:                  ; Cică BEGIN
	mov AL, 22
	mov DS:[20], AL
	mov AX, 8877
	mov DS:[21], AX
   term:	jmp term   ; Aşa s-ar zice END
   end start




; Ce ne spune debug:
; ---------------------------------------------
;  cs:0000 B022           mov    al,22           ax 8877   &#166;c=0&#166;
;  cs:0002 A22000         mov    [0020],al       bx 0000   &#166;z=0&#166;
;  cs:0005 B87788         mov    ax,8877      -  cx 0000   &#166;s=0&#166;
;  cs:0008 A32100         mov    [0021],ax    -  dx 0000   &#166;o=0&#166;
;  cs:000B EBFE           jmp    000B         -  si 0000   &#166;p=0&#166;

; |--------- +      
;  ds:0020 22 77 88 FF FF FF FF FF