12 lines
280 B
C
12 lines
280 B
C
#pragma once
|
|
#include "pci.h"
|
|
#include "type.h"
|
|
|
|
#define BGA_SWAP_BUFFERS 0x0101
|
|
#define BGA_GET_HEIGHT 0x0102
|
|
#define BGA_GET_WIDTH 0x0103
|
|
#define BGA_GET_SCALE 0x0104
|
|
#define BGA_DISABLE 0x0105
|
|
|
|
int bga_init_with_dev(pci_dev_t* dev);
|
|
int bga_ioctl(uintptr_t cmd, uintptr_t arg); |