aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.zig
blob: 0fe44974f25f386bc6960ec4b1f4b9fed11f5585 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! By convention, main.zig is where your main function lives in the case that
//! you are building an executable. If you are making a library, the convention
//! is to delete this file and start with root.zig instead.
//const std = @import("std");

const gpio = packed struct {
    moder: u32,
    otyper: u32,
    ospeedr: u32,
    pupdr: u32,
    idr: u32,
    odr: u32,
    bsrr: u32,
    lckr: u32,
    afrl: u32,
    afrh: u32,
    brr: u32,
    ascr: u32,
};

const cpu = struct {
    pub fn interrupt_disable() void {
        asm volatile("cpsid i");
    }

    pub fn interrupt_enable() void {
        asm volatile("cpsie i");
    }
};

const gpioa: *gpio = @ptrFromInt(0x48000000);
const rcc: *[39]u32 = @ptrFromInt(0x40021000);

export fn _start() callconv(.C) noreturn {
    cpu.interrupt_disable();

    rcc[19] |= 1; // gpioaen
    gpioa.moder &= ~@as(u32, 0x3 << (5 * 2));
    gpioa.moder |= (1 << (5 * 2));

    while (true) {
        gpioa.odr ^= (1 << 5);
    }
}

export fn fault_handler() callconv(.C) void {
    while (true) {}
}