Testing Palindromes
Each program below is to be written and tested on the virtual machine given in class.
For example, to compile program 1, you will enter the following commands:
# The Nasm assembler: compile using the nasm assembler
$ nasm -g -f elf -F dwarf -o palindrome.o palindrome.asm
# The ld linker: link using the ld linker
$ ld palindrome.o -m elf_i386 -o palindrome
# run the program
$ ./palindrome