diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-11 12:47:27 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-11 12:47:27 -0400 |
commit | c1a44ed41dcf92d1567ab927d7f1675d6918aff9 (patch) | |
tree | a9c385264b6a52087856addf568c941c56a5800d /masm/test.asm | |
parent | refactor (diff) | |
download | mips-c1a44ed41dcf92d1567ab927d7f1675d6918aff9.tar.gz mips-c1a44ed41dcf92d1567ab927d7f1675d6918aff9.tar.bz2 mips-c1a44ed41dcf92d1567ab927d7f1675d6918aff9.zip |
add ascii and asciiz directives, fix symtab bug
Diffstat (limited to '')
-rw-r--r-- | masm/test.asm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/masm/test.asm b/masm/test.asm index 1820b62..3dea7c9 100644 --- a/masm/test.asm +++ b/masm/test.asm @@ -1,3 +1,8 @@ +.data + +str: +.ascii "hello world" + .text .align 2 |