converted to GNU asm

This commit is contained in:
Markus Fröschle
2012-10-12 12:14:25 +00:00
parent b314b79c9d
commit d4ecd8a366

View File

@@ -1,11 +1,14 @@
// letztes file der liste /*
// wichtig als endpunkt des kopierens * last file of the list. In the original sources, this marks the end of the
* copy loop that copies the BaS to its final place.
*
* FIXME:
*
* no need to do it that way - this file will probably vanish and be replaced by
* a matching entry in the linker script.
*/
void copy_end(void) void copy_end(void)
{ {
asm asm(".globl copy_end\n\t");
{ asm("copy_end: nop\n\t");
copy_end: }
nop
}
}