vc3/common/video_character_display.h
2025-03-31 19:49:36 +02:00

14 lines
388 B
C

#pragma once
#define vcd_ch_width 8
#define vcd_ch_height 8
static const int vcd_width_in_ch = 40;
static const int vcd_height_in_ch = 12;
static const int vcd_px_width = 4;
static const int vcd_px_height = 8;
static const int vcd_width_in_px
= vcd_width_in_ch * vcd_ch_width * vcd_px_width;
static const int vcd_height_in_px
= vcd_height_in_ch * vcd_ch_height * vcd_px_height;