Tweak messaging

This commit is contained in:
Liam Kerr 2026-02-09 21:14:13 +00:00
parent 3ac35acfca
commit 3f0105e37e
2 changed files with 4 additions and 2 deletions

View file

@ -7,8 +7,9 @@
void kmain() void kmain()
{ {
kputs("----------------------");
kprintf("Hello, from %s!", "SquidgeOS"); kprintf("Hello, from %s!", "SquidgeOS");
kputs("-------------------"); kputs("----------------------");
knewline(); knewline();
page_init(); page_init();
test_memory_integrity(); test_memory_integrity();

View file

@ -208,8 +208,9 @@ void test_memory_alignment()
void test_memory_stress() void test_memory_stress()
{ {
kprintf("Starting Stress Test...\n"); kprint("\nPre-stress heap stats:\n");
heap_stats(); heap_stats();
kprintf("Starting Stress Test...\n");
void *ptrs[100] = {0}; void *ptrs[100] = {0};
uint32_t seed = 0xACE2026; uint32_t seed = 0xACE2026;