comparison kernel/arch/vexpressA9.c3 @ 352:899ae3aea803

First kernel run for vexpressA9
author Windel Bouwman
date Sun, 09 Mar 2014 11:55:55 +0100
parents
children b8ad45b3a573
comparison
equal deleted inserted replaced
351:62803b073d11 352:899ae3aea803
1 module arch;
2
3 function void init()
4 {
5 var int *UART0DR;
6 UART0DR = cast<int*>(0x10009000); // UART0 DR register
7 *UART0DR = 0x65;
8 }
9
10 function void halt()
11 {
12 }
13