Skip to content

Instantly share code, notes, and snippets.

View Protoster's full-sized avatar

Protoster Protoster

View GitHub Profile
@Protoster
Protoster / aarch64.s
Created November 23, 2015 03:53
SPO600 Lab 4 assembly code
.text
.globl _start
_start:
max=31
mov x9, 0 /* iteration counter */
mov x14, 10 /* division doesnt support immediate values */
adr x11, msg /* address of text string */
loop:
cmp x9, x14