Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 372 Bytes

File metadata and controls

14 lines (9 loc) · 372 Bytes

CS166 Team Project

Requires x64 Linux system.

Compile this program with

gcc main.s print.s readline.s -o main -nostdlib -no-pie

-nostdlib is used since I did not use any standard library functions

-no-pie disables Position Independent Executable, so the addresses aren't randomized.

Use objdump -d ./main to figure out where to jump in this program.