2002-11-02 Joel Sherrill <joel@OARcorp.com>

* console/console.c, start/start.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-02 14:09:24 +00:00
parent ceddf30ff6
commit cf0bf01687
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2002-11-02 Joel Sherrill <joel@OARcorp.com>
* console/console.c, start/start.c: Removed warnings.
2002-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Reformat. * .cvsignore: Reformat.

View File

@@ -134,7 +134,7 @@ void xmit_interrupt(void) {
void modem_status(void) { void modem_status(void) {
register char a; register char a;
if ( ((a=*MDSR) & DCTS) != 0 ) if ( ((a=*MDSR) & DCTS) != 0 ) {
if ( (a & CTS) == 0) if ( (a & CTS) == 0)
_tx_stop = 1; _tx_stop = 1;
else { else {
@@ -142,6 +142,7 @@ void modem_status(void) {
xmit_interrupt(); xmit_interrupt();
} }
} }
}
/* transfer character from the buffer */ /* transfer character from the buffer */
char inbyte(void) { char inbyte(void) {

View File

@@ -33,7 +33,7 @@ void boot_card();
movel #end, %d0;\n\ movel #end, %d0;\n\
addl " STACK_SIZE ",%d0;\n\ addl " STACK_SIZE ",%d0;\n\
movel %d0,%sp;\n\ movel %d0,%sp;\n\
link %a6, #0"\n\ link %a6, #0"
); );
/* /*
* Initialize RAM by copying the .data section out of ROM (if * Initialize RAM by copying the .data section out of ROM (if