From 07ca77293296018d71a4b1e51d84bd80fd8afceb Mon Sep 17 00:00:00 2001 From: bbbradsmith Date: Tue, 28 May 2019 15:38:27 -0400 Subject: [PATCH] adjust literal width to match variable type --- src/sim65/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sim65/main.c b/src/sim65/main.c index 03803a1bf..d3f507f64 100644 --- a/src/sim65/main.c +++ b/src/sim65/main.c @@ -137,7 +137,7 @@ static unsigned char ReadProgramFile (void) { int Val; unsigned Addr = 0x0200; - unsigned char SPAddr = 0x0000; + unsigned char SPAddr = 0x00; /* Open the file */ FILE* F = fopen (ProgramFile, "rb");