Skip to content

Commit

Permalink
fix tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
hackwaly committed May 8, 2013
1 parent 67645d2 commit 88971eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gen_m65c02_js.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ var $TAX = 'this.reg_x = this.reg_a;' + $SETNZ('this.reg_x');
var $TAY = 'this.reg_y = this.reg_a;' + $SETNZ('this.reg_y');
var $TXA = 'this.reg_a = this.reg_x;' + $SETNZ('this.reg_a');
var $TYA = 'this.reg_a = this.reg_y;' + $SETNZ('this.reg_a');
var $TSX = 'this.reg_x = (this.reg_sp & 0xFF);' + $SETNZ('this.reg_x');
var $TSX = 'this.reg_x = (this.reg_sp & 0xFF);';
var $TXS = 'this.reg_sp = (this.reg_x | 0x100);';


Expand Down

0 comments on commit 88971eb

Please sign in to comment.