From 936da8d66149b052b21e66abe2d705dc0bf06e38 Mon Sep 17 00:00:00 2001 From: binary Date: Sat, 8 Aug 2020 04:40:50 -0400 Subject: [PATCH] Adding Notes --- notes/6_Jumping Strategies Notes.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 notes/6_Jumping Strategies Notes.txt diff --git a/notes/6_Jumping Strategies Notes.txt b/notes/6_Jumping Strategies Notes.txt new file mode 100644 index 0000000..ebc9e2c --- /dev/null +++ b/notes/6_Jumping Strategies Notes.txt @@ -0,0 +1,13 @@ +32-bit binary: 00000000 00000000 00000000 00000000 +400 in binary: 00000000 00000000 00000001 10010000 +-400 binary: 11111111 11111111 11111110 01110000 +-400 in hex: FF FF FE 70 + +-400 in little endian = \x70\xFE\xFF\xFF + + +References +https://www.tutorialspoint.com/assembly_programming/assembly_quick_guide.htm +https://c9x.me/x86/html/file_module_x86_id_147.html +https://en.wikibooks.org/wiki/X86_Assembly/Control_Flow +