WHAT'S NEW with version 0.0.2: - Again thanks to Eric Youngdale for some very useful comments. - The Windows startup code created by Micrsoft C 7.0 now runs to completion. - Added a new patch to the kernel to increase the usable size of the ldt to the full 32 entries currently allowed. - Imported name relocations are now supported. - Source code for my infamous test program is now included. - A handful of basic Windows functions are now emulated. See "kernel.spec" for examples of how to use the build program. WHAT'S NEW with version 0.0.1: - Eric Youngdale contributed countless improvements in memory efficiency, bug fixes, and relocation. - The build program has been completed. It now lets you specify how the main DLL entry point should interface to your emulation library routines. A brief description of how to build these specifications is included in the file "build-spec.txt". - The code to dispatch builtin DLL calls is complete, but untested.
16 lines
607 B
Ruby
16 lines
607 B
Ruby
name kernel
|
|
id 1
|
|
length 256
|
|
|
|
3 pascal GetVersion() KERNEL_GetVersion()
|
|
5 pascal LocalAlloc(word word) HEAP_LocalAlloc(1 2)
|
|
23 pascal LockSegment(s_word) KERNEL_LockSegment(1)
|
|
24 pascal UnlockSegment(s_word) KERNEL_UnlockSegment(1)
|
|
30 pascal WaitEvent(word) KERNEL_WaitEvent(1)
|
|
49 pascal GetModuleFileName(word ptr s_word) KERNEL_GetModuleFileName(1 2 3)
|
|
91 pascal InitTask() KERNEL_InitTask()
|
|
102 register DOS3Call(word word word word word
|
|
word word word word word)
|
|
KERNEL_DOS3Call(1 2 3 4 5 6 7 8 9 10)
|
|
131 pascal GetDOSEnvironment() GetDOSEnvironment()
|
|
178 equate __WINFLAGS 0x413
|
|
|