; This is my first x86 assembly program.
format PE console
entry start
include 'WIN32A.inc'

;====================================
section '.text' code readable executable

start:
	; Program begins here.
	inc eax
	inc eax
	dec eax
	inc eax
	
	; Exit the Process
	push 0;
	call [ExitProcess]

;==================================
; Imports section:
section '.idata' import data readable

library kernel,'kernel32.dll'
import kernel,\
	ExitProcess,'ExitProcess'
