From 6e709fcc4c8b252bcaf0288c7256d4cead69dbfb Mon Sep 17 00:00:00 2001 From: James Tauber Date: Sat, 6 Aug 2011 23:36:04 -0400 Subject: [PATCH] turns out PLA DOES affect NZ after all --- applepy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applepy.py b/applepy.py index 15cb612..6b5a652 100644 --- a/applepy.py +++ b/applepy.py @@ -568,7 +568,7 @@ class CPU: self.push_byte(self.status_as_byte()) def PLA(self): - self.accumulator = self.pull_byte() # @@@ doesn't effect NZ? + self.accumulator = self.update_nz(self.pull_byte()) def PLP(self): self.status_from_byte(self.pull_byte())