aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNæþ'n Lasseter <Næþ'n Lasseter nathan@bytemark.co.uk>2016-10-19 22:17:34 +0100
committerNæþ'n Lasseter <Næþ'n Lasseter nathan@bytemark.co.uk>2016-10-19 22:17:34 +0100
commitc0af701809eaf4958dc3da08fb72ef1339528130 (patch)
tree36c98254abb41f41a87027e5f49c08cf0836c695
parent22e6cfc502a1ff1d4308d61dbff409a0b7020380 (diff)
Fixed Z location in init subroutineHEADmaster
-rw-r--r--as.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/as.h b/as.h
index a67e15f..d4110d5 100644
--- a/as.h
+++ b/as.h
@@ -26,7 +26,7 @@ void out(FILE* file, int a, int b, int c) {
void preamble(FILE* file) {
// Jump over Z
- out(file, 1, 1, PLEN);
+ out(file, Z, Z, PLEN);
// Z
out(file, 0, 0, 0);
}