Mercurial > lcfOS
view kernel/arch/vexpressA9.c3 @ 377:9667d78ba79e
Switched to xml for project description
author | Windel Bouwman |
---|---|
date | Fri, 11 Apr 2014 15:47:50 +0200 |
parents | 577ed7fb3fe4 |
children | 6df89163e114 |
line wrap: on
line source
module arch; import io; function void init() { // putc(65) } function void putc(int c) { var int *UART0DR; UART0DR = cast<int*>(0x10009000); // UART0 DR register *UART0DR = c; } function void halt() { }