got rid of uart_out_word()

This commit is contained in:
Markus Fröschle
2012-10-31 22:04:53 +00:00
parent c748271750
commit 5d9a66a2c2
2 changed files with 2 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
# can be either "Y" or "N" (without quotes). "Y" for using the m68k-elf-, "N" for using the m68k-atari-mint # can be either "Y" or "N" (without quotes). "Y" for using the m68k-elf-, "N" for using the m68k-atari-mint
# toolchain # toolchain
COMPILE_ELF=Y COMPILE_ELF=N
ifeq (Y,$(COMPILE_ELF)) ifeq (Y,$(COMPILE_ELF))
TCPREFIX=m68k-elf- TCPREFIX=m68k-elf-

View File

@@ -8,8 +8,8 @@
#include "MCF5475_SLT.h" #include "MCF5475_SLT.h"
#include "startcf.h" #include "startcf.h"
#include "cache.h" #include "cache.h"
#include "bas_printf.h"
#define uart_out_word(a) MCF_PSC3_PSCTB_8BIT = (a)
extern uint32_t Bas_base[]; extern uint32_t Bas_base[];
extern uint8_t tos_base[]; extern uint8_t tos_base[];
@@ -69,7 +69,6 @@ void BaS(void)
{ {
* (uint8_t *) 0xffff8963 = (uint8_t) MCF_PSC3_PSCRB_8BIT; /* Copy the NVRAM data from the PIC to the FPGA */ * (uint8_t *) 0xffff8963 = (uint8_t) MCF_PSC3_PSCRB_8BIT; /* Copy the NVRAM data from the PIC to the FPGA */
} }
uart_out_word(' OK.');
} }
xprintf("copy EmuTOS: "); xprintf("copy EmuTOS: ");