diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-08-30 22:24:41 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-08-30 22:24:41 +0000 |
commit | c1d4cc4739583f906b639daf3bd9384dd791530e (patch) | |
tree | 27f471459ec61067210883ff21396d0bc14a7fdc /z80.c | |
parent | cb4cd60cbce11439b0e0529df20e671e5b49b6f1 (diff) |
Development checkin
Diffstat (limited to 'z80.c')
-rw-r--r-- | z80.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -179,6 +179,12 @@ void Z80Reset(Z80 *cpu) } +void Z80SetPC(Z80 *cpu,Z80Word PC) +{ + cpu->PC=PC; +} + + void Z80ResetCycles(Z80 *cpu, Z80Val cycles) { cpu->cycle=cycles; |