From 51b7b57558c3842ea667f9341dcad619bef26fd9 Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Sat, 29 Aug 2009 09:59:09 +0200 Subject: Some changes --- Source/Kernel/Core/CMem.ns.o | Bin 0 -> 991 bytes Source/Kernel/Core/Sys.ns.o | Bin 0 -> 3624 bytes Source/Kernel/Core/common.wtf.h | 15 +++++++++------ Source/Kernel/Core/cppsupport.wtf.o | Bin 0 -> 741 bytes Source/Kernel/Core/kmain.wtf.o | Bin 0 -> 7552 bytes Source/Kernel/Core/loader.wtf.o | Bin 0 -> 1616 bytes Source/Kernel/DeviceManager/Dev.ns.o | Bin 0 -> 5580 bytes Source/Kernel/DeviceManager/Disp.ns.o | Bin 0 -> 1416 bytes Source/Kernel/DeviceManager/Time.ns.o | Bin 0 -> 976 bytes Source/Kernel/Devices/Display/VGATextOutput.class.o | Bin 0 -> 2196 bytes Source/Kernel/Devices/Timer.class.o | Bin 0 -> 3036 bytes Source/Kernel/Library/Bitset.class.o | Bin 0 -> 2044 bytes Source/Kernel/Library/String.class.o | Bin 0 -> 6756 bytes Source/Kernel/MemoryManager/GDT.ns.o | Bin 0 -> 1408 bytes Source/Kernel/MemoryManager/GDT.wtf.o | Bin 0 -> 640 bytes Source/Kernel/MemoryManager/Mem.ns.o | Bin 0 -> 4612 bytes Source/Kernel/MemoryManager/PageAlloc.ns.o | Bin 0 -> 2252 bytes Source/Kernel/MemoryManager/PageDirectory.class.o | Bin 0 -> 2068 bytes Source/Kernel/MemoryManager/PhysMem.ns.o | Bin 0 -> 3388 bytes Source/Kernel/SyscallManager/IDT.ns.o | Bin 0 -> 8292 bytes Source/Kernel/SyscallManager/IDT.wtf.o | Bin 0 -> 2208 bytes Source/Kernel/VTManager/VT.ns.o | Bin 0 -> 4340 bytes Source/Kernel/VTManager/VirtualTerminal.class.o | Bin 0 -> 5092 bytes 23 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 Source/Kernel/Core/CMem.ns.o create mode 100644 Source/Kernel/Core/Sys.ns.o create mode 100644 Source/Kernel/Core/cppsupport.wtf.o create mode 100644 Source/Kernel/Core/kmain.wtf.o create mode 100644 Source/Kernel/Core/loader.wtf.o create mode 100644 Source/Kernel/DeviceManager/Dev.ns.o create mode 100644 Source/Kernel/DeviceManager/Disp.ns.o create mode 100644 Source/Kernel/DeviceManager/Time.ns.o create mode 100644 Source/Kernel/Devices/Display/VGATextOutput.class.o create mode 100644 Source/Kernel/Devices/Timer.class.o create mode 100644 Source/Kernel/Library/Bitset.class.o create mode 100644 Source/Kernel/Library/String.class.o create mode 100644 Source/Kernel/MemoryManager/GDT.ns.o create mode 100644 Source/Kernel/MemoryManager/GDT.wtf.o create mode 100644 Source/Kernel/MemoryManager/Mem.ns.o create mode 100644 Source/Kernel/MemoryManager/PageAlloc.ns.o create mode 100644 Source/Kernel/MemoryManager/PageDirectory.class.o create mode 100644 Source/Kernel/MemoryManager/PhysMem.ns.o create mode 100644 Source/Kernel/SyscallManager/IDT.ns.o create mode 100644 Source/Kernel/SyscallManager/IDT.wtf.o create mode 100644 Source/Kernel/VTManager/VT.ns.o create mode 100644 Source/Kernel/VTManager/VirtualTerminal.class.o (limited to 'Source') diff --git a/Source/Kernel/Core/CMem.ns.o b/Source/Kernel/Core/CMem.ns.o new file mode 100644 index 0000000..b8b6dbb Binary files /dev/null and b/Source/Kernel/Core/CMem.ns.o differ diff --git a/Source/Kernel/Core/Sys.ns.o b/Source/Kernel/Core/Sys.ns.o new file mode 100644 index 0000000..a0eeb57 Binary files /dev/null and b/Source/Kernel/Core/Sys.ns.o differ diff --git a/Source/Kernel/Core/common.wtf.h b/Source/Kernel/Core/common.wtf.h index 86b0d9e..d3e5abe 100644 --- a/Source/Kernel/Core/common.wtf.h +++ b/Source/Kernel/Core/common.wtf.h @@ -7,12 +7,15 @@ #define NULL 0 -typedef unsigned int u32int; -typedef unsigned short u16int; -typedef unsigned char u8int; -typedef int s32int; -typedef short s16int; -typedef char s8int; +typedef unsigned int addr_t; +typedef unsigned long long u64int; +typedef unsigned int u32int; +typedef unsigned short u16int; +typedef unsigned char u8int; +typedef long long s64int; +typedef int s32int; +typedef short s16int; +typedef char s8int; #include #include diff --git a/Source/Kernel/Core/cppsupport.wtf.o b/Source/Kernel/Core/cppsupport.wtf.o new file mode 100644 index 0000000..4088bfb Binary files /dev/null and b/Source/Kernel/Core/cppsupport.wtf.o differ diff --git a/Source/Kernel/Core/kmain.wtf.o b/Source/Kernel/Core/kmain.wtf.o new file mode 100644 index 0000000..58cec72 Binary files /dev/null and b/Source/Kernel/Core/kmain.wtf.o differ diff --git a/Source/Kernel/Core/loader.wtf.o b/Source/Kernel/Core/loader.wtf.o new file mode 100644 index 0000000..b63fce7 Binary files /dev/null and b/Source/Kernel/Core/loader.wtf.o differ diff --git a/Source/Kernel/DeviceManager/Dev.ns.o b/Source/Kernel/DeviceManager/Dev.ns.o new file mode 100644 index 0000000..a6a504f Binary files /dev/null and b/Source/Kernel/DeviceManager/Dev.ns.o differ diff --git a/Source/Kernel/DeviceManager/Disp.ns.o b/Source/Kernel/DeviceManager/Disp.ns.o new file mode 100644 index 0000000..72caadc Binary files /dev/null and b/Source/Kernel/DeviceManager/Disp.ns.o differ diff --git a/Source/Kernel/DeviceManager/Time.ns.o b/Source/Kernel/DeviceManager/Time.ns.o new file mode 100644 index 0000000..ce0c22c Binary files /dev/null and b/Source/Kernel/DeviceManager/Time.ns.o differ diff --git a/Source/Kernel/Devices/Display/VGATextOutput.class.o b/Source/Kernel/Devices/Display/VGATextOutput.class.o new file mode 100644 index 0000000..d8cb680 Binary files /dev/null and b/Source/Kernel/Devices/Display/VGATextOutput.class.o differ diff --git a/Source/Kernel/Devices/Timer.class.o b/Source/Kernel/Devices/Timer.class.o new file mode 100644 index 0000000..8cc4f72 Binary files /dev/null and b/Source/Kernel/Devices/Timer.class.o differ diff --git a/Source/Kernel/Library/Bitset.class.o b/Source/Kernel/Library/Bitset.class.o new file mode 100644 index 0000000..c0d79f5 Binary files /dev/null and b/Source/Kernel/Library/Bitset.class.o differ diff --git a/Source/Kernel/Library/String.class.o b/Source/Kernel/Library/String.class.o new file mode 100644 index 0000000..5b741b3 Binary files /dev/null and b/Source/Kernel/Library/String.class.o differ diff --git a/Source/Kernel/MemoryManager/GDT.ns.o b/Source/Kernel/MemoryManager/GDT.ns.o new file mode 100644 index 0000000..505b3f9 Binary files /dev/null and b/Source/Kernel/MemoryManager/GDT.ns.o differ diff --git a/Source/Kernel/MemoryManager/GDT.wtf.o b/Source/Kernel/MemoryManager/GDT.wtf.o new file mode 100644 index 0000000..931424f Binary files /dev/null and b/Source/Kernel/MemoryManager/GDT.wtf.o differ diff --git a/Source/Kernel/MemoryManager/Mem.ns.o b/Source/Kernel/MemoryManager/Mem.ns.o new file mode 100644 index 0000000..f4d4309 Binary files /dev/null and b/Source/Kernel/MemoryManager/Mem.ns.o differ diff --git a/Source/Kernel/MemoryManager/PageAlloc.ns.o b/Source/Kernel/MemoryManager/PageAlloc.ns.o new file mode 100644 index 0000000..ed37340 Binary files /dev/null and b/Source/Kernel/MemoryManager/PageAlloc.ns.o differ diff --git a/Source/Kernel/MemoryManager/PageDirectory.class.o b/Source/Kernel/MemoryManager/PageDirectory.class.o new file mode 100644 index 0000000..3f8317e Binary files /dev/null and b/Source/Kernel/MemoryManager/PageDirectory.class.o differ diff --git a/Source/Kernel/MemoryManager/PhysMem.ns.o b/Source/Kernel/MemoryManager/PhysMem.ns.o new file mode 100644 index 0000000..fe87ee5 Binary files /dev/null and b/Source/Kernel/MemoryManager/PhysMem.ns.o differ diff --git a/Source/Kernel/SyscallManager/IDT.ns.o b/Source/Kernel/SyscallManager/IDT.ns.o new file mode 100644 index 0000000..964cee9 Binary files /dev/null and b/Source/Kernel/SyscallManager/IDT.ns.o differ diff --git a/Source/Kernel/SyscallManager/IDT.wtf.o b/Source/Kernel/SyscallManager/IDT.wtf.o new file mode 100644 index 0000000..cdba489 Binary files /dev/null and b/Source/Kernel/SyscallManager/IDT.wtf.o differ diff --git a/Source/Kernel/VTManager/VT.ns.o b/Source/Kernel/VTManager/VT.ns.o new file mode 100644 index 0000000..b81ef93 Binary files /dev/null and b/Source/Kernel/VTManager/VT.ns.o differ diff --git a/Source/Kernel/VTManager/VirtualTerminal.class.o b/Source/Kernel/VTManager/VirtualTerminal.class.o new file mode 100644 index 0000000..02d904b Binary files /dev/null and b/Source/Kernel/VTManager/VirtualTerminal.class.o differ -- cgit v1.2.3