diff options
author | Marvin Borner | 2020-03-18 16:41:21 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-18 16:41:21 +0100 |
commit | c6657aac0c5d5ecf347bc082cb6df38e1174d297 (patch) | |
tree | 5db660dd74d9741cf1105290d4584d9a1fdb7020 /src/kernel/io/io.h | |
parent | add6efeb22ffb7695d5c9addcef073fc653f700e (diff) |
Replaced asm calls with sweet function
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r-- | src/kernel/io/io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h index b62e90f..7d09dcb 100644 --- a/src/kernel/io/io.h +++ b/src/kernel/io/io.h @@ -24,6 +24,10 @@ uint16_t inw(uint16_t port); */ uint32_t inl(uint16_t port); +void cli(); +void sti(); +void hlt(); + /** * Send data to the specified hardware port * @param port The hardware port |