Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit c69c2b1

Browse files
committed
enable xhci debug msg
1 parent baf7965 commit c69c2b1

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/include/tests/define.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22
#define _TESTS_CONFIG_H
33

44
// テストを実行するかどうか
5-
#define TEST_TRUE
5+
//#define TEST_TRUE
66

77
#ifdef TEST_TRUE
88
// メモリマップとメモリのテスト
9-
// #define MEM_TEST
9+
#define MEM_TEST
1010
// 割り込みのテスト
11-
// #define INTERRUPT_TEST
11+
#define INTERRUPT_TEST
1212
// 割り込みベクタのテスト
13-
// #define INTERRUPT_VECTOR_TEST
13+
#define INTERRUPT_VECTOR_TEST
1414
// 割り込みハンドラでメモリのテスト
15-
// #define ALLOC_IRQ_TEST
15+
#define ALLOC_IRQ_TEST
1616
// GDT(セグメント)再構築テスト
17-
// #define GDT_TEST
17+
#define GDT_TEST
1818
// ページングのテスト
19-
// #define PAGING_TEST
19+
#define PAGING_TEST
2020
// 仮想メモリのテスト
21-
// #define VMEM_TEST
21+
#define VMEM_TEST
2222
// FAT12 test
23-
// #define FAT12_TEST
23+
#define FAT12_TEST
2424
// ext2 test
25-
// #define EXT2_TEST
25+
#define EXT2_TEST
2626
// ACPI Timer test
27-
// #define ACPI_TIMER_TEST
27+
#define ACPI_TIMER_TEST
2828
// APIC Timer test
2929
// #define APIC_TIMER_TEST
3030
// xHCI USB test

src/kernel/driver/usb/xhci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <mem/manager.h>
1515

1616
/* デバッグ出力を有効化 */
17-
#define XHCI_DEBUG 1
17+
//#define XHCI_DEBUG 1
1818

1919
/* グローバルなxHCIコントローラインスタンス */
2020
static struct xhci_hc g_xhci_controller;

uefi

Submodule uefi updated from 0c7e1ae to 66d7648

0 commit comments

Comments
 (0)