remove unnecessary false parameter from function call

This commit is contained in:
Preston Skupinski 2011-05-02 19:02:55 -04:00
parent 8a401c9eba
commit 3c4e7264cf

4
README
View File

@ -8,10 +8,10 @@ Short examples to try out:
var cpu = new CPU_65816();
cpu.execute("18fba9ff0185ff64ffa5ff", false);
cpu.execute("18fba9ff0185ff64ffa5ff");
cpu.r.a should be 0 after executing this.
cpu.execute("18fba9ff01a0010099fea5ff", false);
cpu.execute("18fba9ff01a0010099fea5ff");
cpu.r.a should be 511 after executing this.