|
|
|
@@ -933,8 +933,8 @@ int e6502_run(e6502_Core* core, |
|
|
|
int instructions) { |
|
|
|
int status = 0; |
|
|
|
int i_count = 0; |
|
|
|
int start = (instructions ? i_count : core->cycle); |
|
|
|
int end = start + remaining; |
|
|
|
uint64_t start = (instructions ? i_count : core->cycle); |
|
|
|
uint64_t end = start + remaining; |
|
|
|
int last_pc = -1; |
|
|
|
while ((instructions ? i_count : core->cycle) < end) { |
|
|
|
#ifdef E6502_HCF |
|
|
|
|