From 021ea9b271f2144f7b16ae41a9236292dea7897d Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Sun, 24 May 2020 21:55:12 -0400 Subject: basic fs type stuff, fat16, removing stack segment and using data segment --- src/kernel/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/util.h') diff --git a/src/kernel/util.h b/src/kernel/util.h index 08b3e4a..e02c819 100644 --- a/src/kernel/util.h +++ b/src/kernel/util.h @@ -1,6 +1,6 @@ #include -void memcpy(void *from, void *to, uint32_t n); +void memcpy(void *to, void *from, uint32_t n); void outb(uint16_t port, uint8_t value); uint8_t inb(uint16_t port); void outw(uint16_t port, uint16_t value); -- cgit v1.2.3