bobbimanners / EightBall

The Eight Bit Algorithmic Language for Apple II, Commodore 64 and VIC20
GNU General Public License v3.0
19 stars 3 forks source link

Caret char is used for power of, but also for bitwise OR on CBM #2

Closed bobbimanners closed 6 years ago

bobbimanners commented 6 years ago

The same character is used for two purposes right now. I need to choose a new character for bitwise OR on Commodore machines.

bobbimanners commented 6 years ago

Changed bitwise XOR (on all platforms) to use the ! character rather than ^.

Now:

a = b ! c      ; Bitwise XOR
a = b ^ c      ; b to the power of c