Skip to content

Commit

Permalink
Some more minor bug fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Sep 9, 2024
1 parent f1579a1 commit 2031fd0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
export OBJ = .obj
export LUA = lua
export CC = gcc
export CXX = g++
export AR = ar
export CFLAGS = -g -O0
export LDFLAGS = -g
export NINJAFLAGS =
export OBJ ?= .obj
export LUA ?= lua
export CC ?= gcc
export CXX ?= g++
export AR ?= ar
export CFLAGS ?= -g -O0
export LDFLAGS ?= -g

.PHONY: all
all: +all
Expand Down
2 changes: 1 addition & 1 deletion third_party/rc2014emu/6800.c
Original file line number Diff line number Diff line change
Expand Up @@ -1625,7 +1625,7 @@ static int m6800_execute_one(struct m6800 *cpu)
}
if (tmp8 <= 0x03 && tmp2 <= 0x03 && (cpu->p & P_H)) {
tmpc = 1;
add =- 0x66;
add = -0x66;
}
}
cpu->a += add;
Expand Down

0 comments on commit 2031fd0

Please sign in to comment.