• test.asm
​x
15
 
1
INCLUDE D:/irvine/Irvine32.inc
2
​
3
  .data                          ;data decleration
4
​
5
  
6
  .code                          ;code decleration
7
​
8
  
9
  main PROC                      ;main method starts
10
  
11
     call DumpRegs
12
  
13
     exit                        ;Exit program
14
  main ENDP
15
  END main