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
- Host: GitHub
- URL: https://github.com/SamChenYu/ECS404U-UTF-8EncodingDecoding
- Owner: SamChenYu
- Created: 2023-12-13T21:22:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-03T23:28:41.000Z (about 2 years ago)
- Last Synced: 2024-11-07T13:39:26.458Z (over 1 year ago)
- Language: Assembly
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)

# 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)