Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 509 Bytes

File metadata and controls

24 lines (15 loc) · 509 Bytes

ASM-Proj3

CSC 3410 Assignment 3

Introduction

Testing Palindromes

Build Setup

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