kos_sys/dc/
fb_console.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Rust for KallistiOS/Dreamcast
// Copyright (C) 2024 Eric Fradella
// https://dreamcast.rs/

use crate::prelude::*;

#[link(name = "kallisti")]
extern "C" {
    pub static dbgio_fb: crate::os::dbgio::dbgio_handler_t;
    pub fn dbgio_fb_set_target(t: *mut u16, w: c_int, h: c_int,
                               borderx: c_int, bordery: c_int);
}