You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
347 B
C
22 lines
347 B
C
2 years ago
|
//test_rb.c
|
||
|
|
||
|
#include <redbus.h>
|
||
|
#include <console.h>
|
||
|
|
||
|
#define redbus 0x0300
|
||
|
#define default_console_id 0x01
|
||
|
|
||
|
void main() {
|
||
|
Console* console;
|
||
|
|
||
|
rb_set_window((void*)redbus);
|
||
|
rb_map_device(default_console_id);
|
||
|
rb_enable();
|
||
|
|
||
|
|
||
|
console = (Console*)redbus;
|
||
|
|
||
|
console->cursor_mode = 2;
|
||
|
console->display[0] = 'X';
|
||
|
console->display[1] = inv('Y');
|
||
|
}
|