aboutsummaryrefslogtreecommitdiffstats
path: root/07-10001st-Prime
diff options
context:
space:
mode:
authormjfernez <mjfernez@gmail.com>2021-10-12 20:18:28 -0400
committermjfernez <mjfernez@gmail.com>2021-10-12 20:18:28 -0400
commit3cf128d6da667d00bb5bb659413ea55a98a02aff (patch)
tree12eb90997dfa63d65fe6da714626271272342320 /07-10001st-Prime
parent009ce017d99a8deb2089438381c273e8f3ea3b67 (diff)
downloadProject_Euler_Solutions-master.tar.gz
Added description. x86 solutions for some problemsHEADmaster
Diffstat (limited to '07-10001st-Prime')
-rw-r--r--07-10001st-Prime/asm/Makefile6
-rwxr-xr-x07-10001st-Prime/asm/primebin0 -> 17040 bytes
-rw-r--r--07-10001st-Prime/asm/prime.asm24
-rw-r--r--07-10001st-Prime/asm/prime.obin0 -> 1584 bytes
4 files changed, 30 insertions, 0 deletions
diff --git a/07-10001st-Prime/asm/Makefile b/07-10001st-Prime/asm/Makefile
new file mode 100644
index 0000000..035c695
--- /dev/null
+++ b/07-10001st-Prime/asm/Makefile
@@ -0,0 +1,6 @@
+prime: prime.o
+ gcc prime.o -o prime
+prime.o: prime.asm
+ nasm -w+all -f elf64 -g -F stabs prime.asm
+clean:
+ rm -f prime prime.o
diff --git a/07-10001st-Prime/asm/prime b/07-10001st-Prime/asm/prime
new file mode 100755
index 0000000..e7318f8
--- /dev/null
+++ b/07-10001st-Prime/asm/prime
Binary files differ
diff --git a/07-10001st-Prime/asm/prime.asm b/07-10001st-Prime/asm/prime.asm
new file mode 100644
index 0000000..078db26
--- /dev/null
+++ b/07-10001st-Prime/asm/prime.asm
@@ -0,0 +1,24 @@
+; What is the 10 001st prime number?
+
+extern printf
+SECTION .data
+flag: db "%d",10,0 ; "%d\n\0"
+
+SECTION .text
+ global main
+ global is_divisible
+
+main:
+ push rbp ; set up stack
+ mov rbp, rsp
+
+
+.print mov rdi, flag ; arg 1 (format)
+ mov rsi, rax ; arg 2 (value)
+ mov rax, 0 ; no xmm registers
+ call printf wrt ..plt
+ pop rbp
+
+ mov rax, 0
+ ret
+
diff --git a/07-10001st-Prime/asm/prime.o b/07-10001st-Prime/asm/prime.o
new file mode 100644
index 0000000..7c52424
--- /dev/null
+++ b/07-10001st-Prime/asm/prime.o
Binary files differ