analog-firmware/vga/vgaout.h

48 lines
1.1 KiB
C
Raw Normal View History

2023-04-06 03:53:21 +00:00
#pragma once
#include <stdint.h>
#define VGA_WIDTH 640
#define VGA_HEIGHT 480
#ifdef ANALOG_GS
#define THEN_WAIT_VSYNC (2 << 12)
#define THEN_WAIT_HSYNC (3 << 12)
#define THEN_EXTEND_7 (4 << 12)
#define THEN_EXTEND_6 (5 << 12)
#define THEN_EXTEND_3 (6 << 12)
#define THEN_EXTEND_1 (7 << 12)
2023-04-06 03:53:21 +00:00
#else
#define THEN_WAIT_VSYNC (2 << 9)
#define THEN_WAIT_HSYNC (3 << 9)
#define THEN_EXTEND_7 (4 << 9)
#define THEN_EXTEND_6 (5 << 9)
#define THEN_EXTEND_3 (6 << 9)
#define THEN_EXTEND_1 (7 << 9)
2023-04-06 03:53:21 +00:00
#endif
struct vga_scanline {
// number of 32-bit words in the data array
uint_fast16_t length;
// number of times to repeat the scanline
uint_fast16_t repeat_count;
volatile uint_fast8_t _flags;
uint32_t _sync;
uint32_t data[(VGA_WIDTH/2)+8];
};
2023-04-18 19:35:49 +00:00
extern void vga_prepare_frame();
extern struct vga_scanline *vga_prepare_scanline();
extern struct vga_scanline *vga_prepare_scanline_quick();
2023-04-18 19:35:49 +00:00
extern void vga_submit_scanline(struct vga_scanline *scanline);
2023-04-06 03:53:21 +00:00
2023-04-18 19:35:49 +00:00
extern void vga_stop();
extern void vga_dpms_sleep();
extern void vga_dpms_wake();
extern void terminal_process_input();