graphics/
screen.rs

1use file_system::{ControlCommand, define_command};
2
3use crate::{Area, Point};
4
5define_command!(SET_DRAWING_AREA, Write, b'D', 0x01, Area, ());
6define_command!(GET_RESOLUTION, Read, b'D', 0x02, (), Point);
7define_command!(WAS_RESIZED, Read, b'D', 0x03, (), bool);