EtchedPixels / Fuzix-Compiler-Kit

Fuzix C Compiler Project
Other
49 stars 13 forks source link

Escaped hex pairs were parsed in the wrong order #152

Closed danielgaskell closed 3 weeks ago

danielgaskell commented 3 weeks ago

A C string like \x1B\x1C\x2D would in fact be outputted as B1 C1 D2, because the order of terms in hexpair() was backwards.

EtchedPixels commented 3 weeks ago

Oops.. that's a feature I don't use clearly. Thanks