From 05d10fb3a941aa384340d2999033aacb31e5f32f Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Thu, 23 May 2024 18:12:40 -0400 Subject: Initial Implementation of ELF --- test6.asm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'test6.asm') diff --git a/test6.asm b/test6.asm index 3a9a21f..3c9ab62 100755 --- a/test6.asm +++ b/test6.asm @@ -10,9 +10,15 @@ syscall .data x: .word 0xFFFFFFFF -#fib: .space 40 -#h: .half 255 -#c: .byte 0 -#dogs: .ascii "Dogs are cool\n" -#cats: .asciiz "cats are cool\n" +cats: .asciiz "cats are cool\n" +c: .byte 0 + +.rodata + +g: .word 50 +dogs: .ascii "Dogs are cool\n" +h: .half 255 + +.bss +fib: .space 40 -- cgit v1.2.3