From 1ecbc0e47e38bd74a295c03cc69ecf7968161cfc Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Sun, 20 Sep 2015 03:58:59 +0000 Subject: [PATCH] Make sure to assign the currentLineText for assembler error printing git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@47 64f78de7-aa59-e511-a0e8-0002a5492df0 --- apple1/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apple1/main.c b/apple1/main.c index b5f8778..4fc5848 100644 --- a/apple1/main.c +++ b/apple1/main.c @@ -136,6 +136,7 @@ int main(int argc, const char * argv[]) continue; } else if (command[0] != ';') { + currentLineText = command; as6502_executeAsmLineOnCPU(cpu, command, strlen(command)); } }