forked from AbleOS/ableos_userland
update drivers
This commit is contained in:
parent
d8b9392bad
commit
e6f835d6ae
|
@ -2,7 +2,6 @@
|
|||
#![no_main]
|
||||
|
||||
#[no_mangle]
|
||||
fn start() -> i32 {
|
||||
fn start() {
|
||||
// Simple driver
|
||||
1
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#![no_main]
|
||||
|
||||
#[no_mangle]
|
||||
fn start() -> i32 {
|
||||
fn start() {
|
||||
// Simple driver
|
||||
1
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#![no_main]
|
||||
|
||||
#[no_mangle]
|
||||
fn start() -> i32 {
|
||||
fn start() {
|
||||
// Simple driver
|
||||
1
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#![no_main]
|
||||
|
||||
#[no_mangle]
|
||||
fn start() -> i32 {
|
||||
fn start() {
|
||||
// Simple driver
|
||||
1
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#![no_main]
|
||||
|
||||
#[no_mangle]
|
||||
fn start() -> i32 {
|
||||
// Simple driver
|
||||
1
|
||||
fn start() {
|
||||
// TODO: Initialize the VGA hardware and configure it to the desired video mode
|
||||
// (e.g. 640x480, 800x600, etc.).
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue