#include <stddef.h>
#include <stdint.h>
#include <stdarg.h>
#include <stdbool.h>
#include "Video.h"

int ScreenWidth     = 320;
int ScreenHeight    = 200;
int Pitch           = 2560;
int Depth           = 8;
int Pixelwidth      = 8;

void PutPixel(int PosX, int PosY, unsigned char Color){
    unsigned char* Location = (unsigned char*)0xA0000 + ScreenWidth * PosY + PosX;
    *Location = Color;
}