summaryrefslogtreecommitdiff
path: root/arm9/source/devices/system.h
blob: 7549f0f0bc161f38e6af303893438f3f65d5e09b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../types/readbuf.h"

#ifndef SYSTEM_H_
    #define SYSTEM_H_

    typedef struct {
        ReadBuf name;
        ReadBuf authors;
        u16 sleep;        // device mask for waking
        u8 wake;          // ID of wake device
    } SystemDevice;

    u8 devices_high();
    u8 devices_low();

#endif