Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c081d79
speed up dosbox, addresses issue #30
GorillaSapiens Oct 14, 2025
19a099e
minor indentation tweaks
GorillaSapiens Oct 14, 2025
a5433cb
fixed IRQ / NMI implementation, working 6502_interrupt_test
GorillaSapiens Oct 14, 2025
ac4b726
compile test harness with -O3 for more speed (saves 1 second)
GorillaSapiens Oct 15, 2025
a276560
adds setters for internal registers
GorillaSapiens Oct 15, 2025
62b452a
moved IRQ/NMI to avoid future merge conflict
GorillaSapiens Oct 15, 2025
538631a
code move anticipating possible future merge conflict
GorillaSapiens Oct 15, 2025
003df4e
issue #35 ; Guard for the terminally creative user
GorillaSapiens Oct 15, 2025
d040713
added "quiet" flag
GorillaSapiens Oct 15, 2025
cd1bb0b
improved speed with quiet flag
GorillaSapiens Oct 15, 2025
4e5f3b5
Merge branch 'test_interrupt' into integration
GorillaSapiens Oct 15, 2025
c3821d3
Merge branch 'setters' into integration
GorillaSapiens Oct 15, 2025
51e66b1
Merge branch 'fool_tolerant' into integration
GorillaSapiens Oct 15, 2025
cb4beea
cleaned up IRQ/NMI handling
GorillaSapiens Oct 15, 2025
a6974fd
Merge branch 'test_interrupt' into integration
GorillaSapiens Oct 15, 2025
94e5889
initial check in, simple windows
GorillaSapiens Oct 17, 2025
0b72343
user input, with scrollback
GorillaSapiens Oct 17, 2025
9e84c65
virtual destructor / override in Terminal
GorillaSapiens Oct 17, 2025
afdb28e
working reset
GorillaSapiens Oct 17, 2025
ce875bd
more simple functionality
GorillaSapiens Oct 17, 2025
631f1db
filenam tab completion
GorillaSapiens Oct 17, 2025
5be8b9a
more commands, fixes to tab completion
GorillaSapiens Oct 18, 2025
270070f
mem command
GorillaSapiens Oct 18, 2025
a6bbf8a
more functionality
GorillaSapiens Oct 18, 2025
aa4df7b
added verbose flag to speed execution
GorillaSapiens Oct 18, 2025
8041e80
accept SR=NV, et. al.
GorillaSapiens Oct 18, 2025
155ea97
indentation
GorillaSapiens Oct 18, 2025
d17d197
window shuffle
GorillaSapiens Oct 18, 2025
4935cf5
added readme
GorillaSapiens Oct 18, 2025
21ca09c
readme
GorillaSapiens Oct 18, 2025
f45027f
more prefixes in help output
GorillaSapiens Oct 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dbg6502/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dbg6502: ../mos6502.cpp ../mos6502.h dbg6502.cpp
g++ -g -o $@ dbg6502.cpp ../mos6502.cpp -lncurses
Loading