View difference between Paste ID: mXh9yXE1 and 4vwxHJ0x
SHOW: | | - or go back to the newest paste.
1
;	Program Template (Template.asm)
2
;	Program Description:
3
;	Author:
4
;	Creation Date:
5
;	Revisions:
6
;	Date:			Modified by:
7
8
.386
9
.model flat,stdcall
10
.stack 4096
11
ExitProcess PROTO, dwExitCode:DWORD
12
13
.data
14
;	declare variables here
15
16
.code
17
main PROC
18
;	write your code here
19
20
INVOKE ExitProcess,0
21
main ENDP
22
; (insert additional procedures here)
23
END main
24