From 673b982b22467a63218dffd7ef10356ec17c36e7 Mon Sep 17 00:00:00 2001 From: uz Date: Sun, 4 Nov 2012 13:54:06 +0000 Subject: [PATCH] Change imports from "import" to "global", so the file can be used from zeropage.s git-svn-id: svn://svn.cc65.org/cc65/trunk@5908 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- asminc/zeropage.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/asminc/zeropage.inc b/asminc/zeropage.inc index 6e6b81bcb..1ba035868 100644 --- a/asminc/zeropage.inc +++ b/asminc/zeropage.inc @@ -8,11 +8,11 @@ ; by the compiler, ready for usage in asm code. - .importzp sp, sreg, regsave - .importzp ptr1, ptr2, ptr3, ptr4 - .importzp tmp1, tmp2, tmp3, tmp4 - .importzp regbank - + .globalzp sp, sreg, regsave + .globalzp ptr1, ptr2, ptr3, ptr4 + .globalzp tmp1, tmp2, tmp3, tmp4 + .globalzp regbank + ; The size of the register bank regbanksize = 6 -- 2.39.5