From d733509c913162f716edc7918bedce93245d06aa Mon Sep 17 00:00:00 2001 From: fares Date: Fri, 22 Nov 2019 18:04:01 -0500 Subject: [PATCH] Removed the need to do vx_tmc(1) at start of main --- runtime/startup/vx_start.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/startup/vx_start.s b/runtime/startup/vx_start.s index 3706f833..d73cb5f2 100644 --- a/runtime/startup/vx_start.s +++ b/runtime/startup/vx_start.s @@ -36,8 +36,8 @@ _start: la a0, __libc_fini_array # Register global termination functions call atexit # to be called upon exit call __libc_init_array # Run global initialization functions - li a0, 4 - .word 0x0005006b # tmc 4 + # li a0, 4 + # .word 0x0005006b # tmc 4 call main tail exit .size _start, .-_start