forked from Yehowshua/RiscV-Formal
8 lines
190 B
Haskell
8 lines
190 B
Haskell
|
module Peripherals.Teardown(teardownPeripherals) where
|
||
|
|
||
|
import Prelude
|
||
|
import Peripherals.UartCFFI(restoreTerminal)
|
||
|
|
||
|
teardownPeripherals :: IO ()
|
||
|
teardownPeripherals = do
|
||
|
restoreTerminal
|