Task Description
Design, code and test/debug an Aarch64 assembly program that performs the following:
· Read in a line of character which contains from 1 to 100 bytes
· The characters/bytes represent UTF-8 encoding of Unicode Character
· Count the number of Unicode characters in the input stream
· The result of the count should return as the exit code of the program with the following code:
· …
· // Read in the string with syscall to read(fd, *buffer, len)
· mov x0, #0 // fd for stdin
· ldr x1, =buffer // load the address of buffer to x1
· mov x2, #200 // number of character to be read
· mov w8, #63 // syscall# for read
· svc #0 // invoke the syscall
·
· // after the call, the number of byte read in should stored in x0
· // and the input bytes are store in buffer
· // This is the part that you should work on your magic
·
· // i.e., count the number of Unicode character in the buffer
· // After that, assumed that the result was found and stored in x1
· mov x0, x1 //save the result as exit code in x0
· mov w8, #93 // service # for exit
· svc #0
Note: Since UTF-8 is a variable-length encoding scheme, the number of Unicode characters will not be the same as the number of bytes in the input string.
Requirements
· The project should be completed by at most two students in a group
· Write the complete information about your group members at the beginning of your source as remarks:
· // Group Members:
· // 1. A-B0-1357-9 Chan Tai Man
· // 2. A-B0-2468-0 Lie Kai Ian
· Submissions that fail to achieve any one of the following will receive 0 marks:
· The submission must be made on or before the deadline
· The submission must be the source code file of the assembled language program
· The program must be free of syntax error and must be able to be assembled and linked successfully by the test system
· The program must pass at least one of the test cases in the test system
· The final mark of your project will be proportional to the number of test cases that you passed.
Testing
· To test your program, you can
1. download the test-tools.zip file in the attachment files
2. copy the file to your Pi (emulator or actual hardware) in the same directory as your source file
3. run the following
4. unzip test-tools.zip
5. chmod +x tester.sh
6. ./tester.sh yourprogram
Where yourprogram is the name of your assembly program. For the first two instructions, you only need to run them once. After that, each time you modify your source code, you only need to run the last instruction to test your updated program.
· If the unzip program is not available in your system, you need to first install it with:
· sudo apt install unzip
· Note:
. The test-tools.zip is now the final version. It has all the 9 seen test cases. When grading your assignment, an additional unseen test case will be added to the test system.
. For some of the test data, you can see the actual content if you open them in a text editor. Just keep in mind that there is an invisible “\n” at the end of each data file. So, the number of characters in the data should be one more than what you see inside the file.