Lab3 - x86_64
Instruction In this lab, I explored assembly language programming on both x86_64 and Aarch64 platforms. The objective was to understand the differences in assembly code generation between these architectures and to implement a simple loop in assembly for both platforms. Connect x86_64 server. ssh username @x86-001.spo600.cdot.systems // replace username Unpack example code. once you connect to the server, unpack the example code with below command. tar -xzvf spo600-assembler-lab-examples.tgz Tree of spo600 directory sshin36@x86-001 : ~ $ tree spo600 spo600 └── examples └── hello ├── assembler │ ├── aarch64 │ │ ├── hello.s │ │ └── Makefile │ ├── Makefile │ └── x86_64 │ ...