VGA
-
[OS] 16. Video DriverOS/OS from Scratch 2021. 7. 2. 14:08
서론 이번 강의에서는 이전 강의에서 사용했던 이론과 코드를 응용해 화면에 문자열을 출력해보겠습니다. 해당 Github 강의는 다음과 같습니다. https://github.com/jschang0215/os-tutorial/tree/master/16-video-driver jschang0215/os-tutorial How to create an OS from scratch. Contribute to jschang0215/os-tutorial development by creating an account on GitHub. github.com 코드 screen.h #define VIDEO_ADDRESS 0xb8000 #define MAX_ROWS 25 #define MAX_COLS 80 #define WHIT..
-
[OS] 15. Video PortsOS/OS from Scratch 2021. 6. 30. 20:19
서론 이번 강의에서는 VGA와 Data Ports의 사용법에 대해 공부하겠습니다. 해당 Github 강의는 다음과 같습니다. https://github.com/cfenollosa/os-tutorial/tree/master/15-video-ports cfenollosa/os-tutorial How to create an OS from scratch. Contribute to cfenollosa/os-tutorial development by creating an account on GitHub. github.com 이론 I/O Programming Input/Output을 담당하는 하드웨어 장치는 Controller Chip을 통해 CPU와 상호작용합니다. Controller Chip에는 CPU가 읽고 쓸..