Mercurial > lcfOS
view kernel/arch/cortexm3.c3 @ 368:d2ddfe134c48
Remove yield from for python < 3.3
author | Windel Bouwman |
---|---|
date | Fri, 21 Mar 2014 11:21:50 +0100 |
parents | b8ad45b3a573 |
children |
line wrap: on
line source
module arch; function void init() { var int *UART0DR; UART0DR = cast<int*>(0x10009000); // UART0 DR register *UART0DR = 0x65; } function void putc(int c) { // TODO } function void halt() { }