From 4be01a995144e467a98988c705d8b5d0ac4bb534 Mon Sep 17 00:00:00 2001 From: James Schloss Date: Sat, 4 Sep 2021 10:23:58 +0900 Subject: [PATCH] attempt at fix for asm --- contents/verlet_integration/code/asm-x64/verlet.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contents/verlet_integration/code/asm-x64/verlet.s b/contents/verlet_integration/code/asm-x64/verlet.s index ed2521f78..d9617fe33 100644 --- a/contents/verlet_integration/code/asm-x64/verlet.s +++ b/contents/verlet_integration/code/asm-x64/verlet.s @@ -4,9 +4,9 @@ zero: .double 0.0 two: .double 2.0 half: .double 0.5 - verlet_fmt: .string "Time for Verlet integration is: %lf\n" - stormer_fmt: .string "Time and Velocity for Stormer Verlet Integration is: %lf, %lf\n" - velocity_fmt: .string "Time and Velocity for Velocity Verlet Integration is: %lf, %lf\n" + verlet_fmt: .string "[#] Time for Verlet integration is:\n%lf\n" + stormer_fmt: .string "[#] Time for Stormer Verlet Integration is:\n%lf\n[#] Velocity for Stormer Verlet Integration is:\n%lf\n" + velocity_fmt: .string "[#] Time for Velocity Verlet Integration is:\n%lf\n[#] Velocity for Velocity Verlet Integration is:\n%lf\n" pos: .double 5.0 acc: .double -10.0 dt: .double 0.01