ref: 83eddb4c4eb324c0c15a04274a2f68d546f2bb64
parent: 57997756b6533f5301744a0edf4e9a630513e671
parent: 2b839fec37404869ebb233674c1c007f4f61c9a7
author: Anthony J. Bentley <[email protected]>
date: Wed Jan 7 11:47:10 EST 2015
Merge branch 'haltnop' of https://github.com/stag019/rgbds
--- a/include/asm/main.h
+++ b/include/asm/main.h
@@ -8,6 +8,7 @@
char binary[2];
SLONG fillchar;
bool verbose;
+ bool haltnop;
//-1 == random
};
--- a/src/asm/asmy.y
+++ b/src/asm/asmy.y
@@ -1,7 +1,6 @@
%{
#include <ctype.h>
#include <errno.h>
-#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -18,8 +17,6 @@
#include "asm/main.h"
#include "asm/lexer.h"
-extern bool haltnop;
-
char *tzNewMacro;
ULONG ulNewMacroSize;
@@ -1264,7 +1261,7 @@
z80_halt: T_Z80_HALT
{
out_AbsByte(0x76);
- if (haltnop) {
+ if (CurrentOptions.haltnop) {
out_AbsByte(0x00);
}
}
--- a/src/asm/main.c
+++ b/src/asm/main.c
@@ -7,7 +7,6 @@
#include <math.h>
#include <stdarg.h>
-#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -30,8 +29,6 @@
*
*/
-bool haltnop;
-
clock_t nStartClock, nEndClock;
SLONG nLineNo;
ULONG nTotalLines, nPass, nPC, nIFDepth, nErrors;
@@ -260,8 +257,8 @@
char *tzMainfile;
- haltnop = true;
+
if (argc == 1)
PrintUsage();
@@ -275,6 +272,7 @@
DefaultOptions.binary[1] = '1';
DefaultOptions.fillchar = 0;
DefaultOptions.verbose = false;
+ DefaultOptions.haltnop = true;
opt_SetCurrentOptions(&DefaultOptions);
@@ -303,7 +301,7 @@
}
break;
case 'h':
- haltnop = false;
+ newopt.haltnop = false;
break;
case 'i':
fstk_AddIncludePath(optarg);