From 02dbc4d3932992f0dc6612d73efb638fcea97050 Mon Sep 17 00:00:00 2001 From: stormofice <58337328+stormofice@users.noreply.github.com> Date: Sat, 4 Sep 2021 15:02:56 +0200 Subject: [PATCH 1/2] Changed verlet asm exit code to 0 --- contents/verlet_integration/code/asm-x64/verlet.s | 1 + 1 file changed, 1 insertion(+) diff --git a/contents/verlet_integration/code/asm-x64/verlet.s b/contents/verlet_integration/code/asm-x64/verlet.s index d9617fe33..0e0d031b3 100644 --- a/contents/verlet_integration/code/asm-x64/verlet.s +++ b/contents/verlet_integration/code/asm-x64/verlet.s @@ -124,5 +124,6 @@ main: mov rax, 1 call printf pop rbp + xor rax, rax # Set exit code to 0 ret From f016a7130bb8b908f2ccddc6a1fa5a84a1060113 Mon Sep 17 00:00:00 2001 From: stormofice <58337328+stormofice@users.noreply.github.com> Date: Mon, 6 Sep 2021 16:27:45 +0200 Subject: [PATCH 2/2] Change monte carlo asm exit code to 0 --- contents/monte_carlo_integration/code/asm-x64/monte_carlo.s | 1 + 1 file changed, 1 insertion(+) diff --git a/contents/monte_carlo_integration/code/asm-x64/monte_carlo.s b/contents/monte_carlo_integration/code/asm-x64/monte_carlo.s index 61355cc95..4fb6d93aa 100644 --- a/contents/monte_carlo_integration/code/asm-x64/monte_carlo.s +++ b/contents/monte_carlo_integration/code/asm-x64/monte_carlo.s @@ -84,5 +84,6 @@ main: call printf add rsp, 16 pop rbp + xor rax, rax # Set exit code to 0 ret