nim-kernel-helloworld/panicoverride.nim

11 lines
148 B
Nim
Raw Permalink Normal View History

2023-06-27 10:02:23 -07:00
import strutil
func halt =
asm "wfi"
proc panic*(str: string) =
halt()
proc rawoutput*(str: string) =
printTxt(cast[seq[char]](str))