1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-06-16 10:29:29 +00:00

Finally tracked down bug preventing Applesoft running

This commit is contained in:
Zellyn Hunter 2013-02-27 22:45:03 -08:00
parent 2620c1dee1
commit a0cb814c9e

View File

@ -345,6 +345,7 @@ func pla(c *cpu) {
c.r.SP++
c.t.Tick()
c.r.A = c.m.Read(0x100 + uint16(c.r.SP))
c.setNZ(c.r.A)
c.t.Tick()
}