An open API service indexing awesome lists of open source software.

https://github.com/SamChenYu/ECS404U-UTF-8EncodingDecoding

UTF-8 Encoding Decoding in MIPS Assembly Language
https://github.com/SamChenYu/ECS404U-UTF-8EncodingDecoding

Last synced: 10 months ago
JSON representation

UTF-8 Encoding Decoding in MIPS Assembly Language

Awesome Lists containing this project

README

          

# UTF-8 Encoding
UTF-8 Encoding in MIPS Assembly Language Using SRL (Shift Right Local) / SLL (Shift Left Local) Bit Manipulation

Follows the 3-byte UTF-8 sequence: 1110zzzz 10yyyyyy 10xxxxxx
0xXXXX Hexadecimal Input
0xXXXXX Hexadecimal Output
Output in $a2 register (Decimal Value)
QtSpim

# UTF-8 Decoding
UTF-8 Decoding in MIPS Assembly Language Using SRL (Shift Right Local) / SLL (Shift Left Local) Bit Manipulation

Follows the 3-byte UTF-8 sequence: 1110zzzz 10yyyyyy 10xxxxxx
0xXXXXX Hexadecimal Input
0xXXXX Hexadecimal Output
Output in $a2 register (Decimal Value Printed)

Proper Decoding this time