Logo  

CS456 - Systems Programming

Displaying exercises/e3/files/ascii.s

%define SYS_WRITE	1
%define SYS_EXIT	60

%define STDIN_FILENO	0
%define STDOUT_FILENO	1
%define STDERR_FILENO	2

SECTION .bss


SECTION .text


GLOBAL _start
_start: