Skip to content

Commit d6d0c12

Browse files
committed
update
1 parent 09fec3a commit d6d0c12

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
commit 09fec3aec0a9ac58ab91b89da3275b4963c86b16
2+
Author: Alexeev Bronislav <[email protected]>
3+
Date: Sat Sep 6 01:22:55 2025 +0700
4+
5+
update docs
6+
17
commit de62a751df22cb5463752436fb6b3b2b086dfe13
28
Author: Alexeev Bronislav <[email protected]>
39
Date: Sat Sep 6 01:20:28 2025 +0700

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ LDFLAGS = -Ttext 0x1000 --oformat binary
2323

2424
KERNEL_ENTRY = $(BIN_DIR)/bootloader/kernel_entry.o
2525
INTERRUPT_OBJ = $(BIN_DIR)/kernel/cpu/interrupt.o
26-
PAGING_OBJ = $(BIN_DIR)/kernel/paging_asm.o
2726

2827
C_SOURCES = $(shell find $(SRC_DIR) -name '*.c')
2928
C_OBJS = $(C_SOURCES:$(SRC_DIR)/%.c=$(BIN_DIR)/%.o)

src/kernel/cpu/isr.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ void irq_handler(registers_t r) {
155155
void irq_install() {
156156
/* Разрешить прерывания */
157157
__asm__ volatile("sti");
158+
158159
/* IRQ0: таймер */
159160
init_timer(50);
160161

src/kernel/kklibc/ctypes.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ typedef unsigned char u8;
1616
typedef 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)

0 commit comments

Comments
 (0)