blob: 6c203dce77417189e99ffd85bac46ce5162405de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# All program code is placed after the
# .text assembler directive
.text
# Declare main as a global function
.globl main
j main
# All memory structures are placed after the
# .data assembler directive
.data
|