blob: d9819a24c42931d23f9979c7a8ad251c1d3344cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
.section ".text.kernel"
.globl kernel_main
kernel_main:
bl sysinit
///https://wiki.osdev.org/ARM_Paging
// Query the ID_MMFR0 register
mrc p15, 0, r0, c0, c1, 4
bl uart_hexn
// Switch to user mode
cps #0x10
// Intentional undefined instruction
//.word 0xf7f0a000
// This will fail in user mode
mrc p15, 3, r0, c15, c0, 0
// Supervisor Call #1 - Does nothing special
svc #1
mrs r0, cpsr
bl uart_hexn
// Supervisor Call #1 - Returns in supervisor mode
svc #0
mrs r0, cpsr
bl uart_hexn
1:
wfe
b 1b
|