From 21fa0293d6a2f05fa2ad426c082147237b66cb3e Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 8 Nov 2009 13:03:06 +0000 Subject: [PATCH] - removed call to dbg_init() - added call to libsys_init() which calls dbg_init(). libsys_init() is in libsys.c Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@636 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/CPUs/MIPS/bsp/examples/startup.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CPUs/MIPS/bsp/examples/startup.S b/lib/CPUs/MIPS/bsp/examples/startup.S index 3ac6c1b..b3eb382 100644 --- a/lib/CPUs/MIPS/bsp/examples/startup.S +++ b/lib/CPUs/MIPS/bsp/examples/startup.S @@ -8,7 +8,7 @@ argv: .word argv0 .text .section .start, "ax" .extern _init - .extern dbg_init + .extern libsys_init .extern _exc_vect_start .extern _xcpt_handler .align 2 @@ -51,8 +51,8 @@ $install: lw $v0, 0($t1) jalr $k0 nop - # Call dbg_init - la $k0, dbg_init + # Call libsys_init + la $k0, libsys_init jalr $k0 nop