File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ commit 09fec3aec0a9ac58ab91b89da3275b4963c86b16
2+ Author: Alexeev Bronislav <
[email protected] >
3+ Date: Sat Sep 6 01:22:55 2025 +0700
4+
5+ update docs
6+
17commit de62a751df22cb5463752436fb6b3b2b086dfe13
28Author: Alexeev Bronislav <
[email protected] >
39Date: Sat Sep 6 01:20:28 2025 +0700
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ LDFLAGS = -Ttext 0x1000 --oformat binary
2323
2424KERNEL_ENTRY = $(BIN_DIR ) /bootloader/kernel_entry.o
2525INTERRUPT_OBJ = $(BIN_DIR ) /kernel/cpu/interrupt.o
26- PAGING_OBJ = $(BIN_DIR ) /kernel/paging_asm.o
2726
2827C_SOURCES = $(shell find $(SRC_DIR ) -name '* .c')
2928C_OBJS = $(C_SOURCES:$(SRC_DIR ) /%.c=$(BIN_DIR ) /%.o )
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ void irq_handler(registers_t r) {
155155void irq_install () {
156156 /* Разрешить прерывания */
157157 __asm__ volatile ("sti" );
158+
158159 /* IRQ0: таймер */
159160 init_timer (50 );
160161
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ typedef unsigned char u8;
1616typedef char s8 ;
1717
1818#define NULL ((void*)0)
19+ #define true 1
20+ #define false 0
1921
2022#define low_16 (address ) (u16)((address) & 0xFFFF)
2123#define high_16 (address ) (u16)(((address) >> 16) & 0xFFFF)
You can’t perform that action at this time.
0 commit comments