CSC231 skel.asm

From dftwiki3
Revision as of 09:31, 10 September 2012 by Thiebaut (talk | contribs)
Jump to: navigation, search

--D. Thiebaut 19:56, 7 September 2010 (UTC)


;;; program_name.asm
;;; your name
;;; 
;;; a description of the program
;;;
;;; to assemble and run:
;;;
;;;     nasm -f elf -F  stabs program.asm
;;;     ld -o program program.o
;;;     ./program
;;; -------------------------------------------------------------------

;%include files here...

EXIT    equ             1
WRITE   equ             4
STDOUT  equ             1
        
      	;; ------------------------------------------------------------
	;; data areas
	;; ------------------------------------------------------------

	section	.data

        
	;; ------------------------------------------------------------
	;; code area
	;; ------------------------------------------------------------

	section	.text
	global	_start

_start:


        ;; (add your code here!!!!)
        

        

	;; exit()

	mov	eax,1
	mov	ebx,0
	int	0x80		; final system call