summaryrefslogtreecommitdiff
path: root/arm9/source/devices/local.c
blob: e13a1f8f2fbe34fd00a9525af141272d9799c130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "../main.h"
#include "local.h"

void std_write(u8 byte) {
    if (byte) {
        receive_keyboard_byte(byte);
    } else {
        close_keyboard();

    }
}