summaryrefslogtreecommitdiff
path: root/arm9/source/devices/system.h
blob: 27619e3b1fa0400924b4c4f4fcd4fd4f48799663 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;

#endif