diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-23 21:15:00 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-23 21:15:00 +0100 |
commit | cffaef421e53b56478213d1c4e4c2ab8cc7c1f4d (patch) | |
tree | 5e1174b21c2d4ca2334d38ba55f5b589fbf5566d /stage3/ata.c | |
parent | 761f81161f8132271d235387466afc15bbedf96e (diff) | |
download | cuddles-cffaef421e53b56478213d1c4e4c2ab8cc7c1f4d.tar.xz |
add message to ATA driver
Diffstat (limited to 'stage3/ata.c')
-rw-r--r-- | stage3/ata.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stage3/ata.c b/stage3/ata.c index 6eb4c9c..3a862fe 100644 --- a/stage3/ata.c +++ b/stage3/ata.c @@ -117,6 +117,8 @@ void ata_init() // print_num(lba48_sectors, 10, 0); print("\n"); free(idvec); + + print(S("ata0-witch initialized\n")); } void ata_read(u64 lba, u16 sectors, void *buffer) |