File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3
3
// Define a build number. This number will be incremented by a simple console program called by a post-build event
4
4
// It's put here in its own file to keep the other program from messing up the source
5
5
#define \
6
- BUILD_NUMBER 5704
6
+ BUILD_NUMBER 5746
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ void KeStartupPhase2(multiboot_info *multibootInfo)
117
117
// Add kernel to list of tasks
118
118
tasks [0 ].inUse = true;
119
119
strncpy (tasks [0 ].imageName , "KERNEL PROCESS" , sizeof ("KERNEL PROCESS" ));
120
+ tasks [0 ].PID = nextPID - 1 ;
120
121
121
122
// Initialize interrupts
122
123
Interrupts_Init ();
@@ -129,7 +130,7 @@ void KeStartupPhase2(multiboot_info *multibootInfo)
129
130
//Mouse_Init();
130
131
131
132
// Execute autoexec.bat (if it exists)
132
- // Autoexec();
133
+ Autoexec ();
133
134
134
135
// Say Hello
135
136
terminal_writestring ("Hello world!\n" );
You can’t perform that action at this time.
0 commit comments