The moxie sub.l instruction is now just sub.

This commit is contained in:
Anthony Green 2014-12-27 12:18:56 +00:00
parent 0615b4bb5f
commit 47c98af2ba
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-12-27 Anthony Green <green@moxielogic.com>
* moxie/crt0.S (_start): sub.l is now sub.
2014-12-15 Stefan Wallentowitz <stefan.wallentowitz@tum.de>
* or1k/Makefile.in: Build and install board libraries

View File

@ -1,6 +1,6 @@
/* crt0.S -- startup file for moxie
*
* Copyright (c) 2008, 2009 Anthony Green
* Copyright (c) 2008, 2009, 2014 Anthony Green
*
* The authors hereby grant permission to use, copy, modify, distribute,
* and license this software and its documentation for any purpose, provided
@ -26,7 +26,7 @@ _start:
ldi.l $r0, __bss_start__
xor $r1, $r1
ldi.l $r2, __bss_end__
sub.l $r2, $r0
sub $r2, $r0
jsra memset
/* Call _init to invoke static constructors, etc. */