From: Alan Cox Date: Mon, 12 Sep 2016 23:14:20 +0000 (+0100) Subject: 68000: swab is now not needed as we use the inlines X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b2a7c36cced0f15fdf1025d24902a5ca06dff711;p=FUZIX.git 68000: swab is now not needed as we use the inlines --- diff --git a/Kernel/platform-v68/main.c b/Kernel/platform-v68/main.c index fa168320..1dc968ca 100644 --- a/Kernel/platform-v68/main.c +++ b/Kernel/platform-v68/main.c @@ -104,18 +104,3 @@ void memzero(void *p, usize_t len) { memset(p, 0, len); } - -/* TODO */ -void devide_read_data(void) -{ -} - -void devide_write_data(void) -{ -} - -/* FIXME: move to asm and lowlevel- */ -uint16_t swab(uint16_t a) -{ - return (a << 8) | (a >> 8); -}