EgonOlsen71 / basicv2

A Commodore (CBM) BASIC V2 interpreter/compiler written in Java
https://egonolsen71.github.io/basicv2/
The Unlicense
84 stars 15 forks source link

shorten bit 7 check #23

Closed nippur72 closed 5 years ago

nippur72 commented 5 years ago

Applies the following optimization to subroutines.asm:

AND #$80
CMP #$80
BNE ...

replaces with

ROL
BCC ...

P.S. I have not tested it 😨