mirror of https://github.com/nmlgc/ReC98.git
15 lines
410 B
C++
15 lines
410 B
C++
#pragma option -zCSHARED
|
|
|
|
#include "platform.h"
|
|
#include "pc98.h"
|
|
#include "planar.h"
|
|
#include "th01/hardware/vplanset.h"
|
|
|
|
void vram_planes_set(void)
|
|
{
|
|
VRAM_PLANE_B = reinterpret_cast<dots8_t __seg *>(SEG_PLANE_B);
|
|
VRAM_PLANE_R = reinterpret_cast<dots8_t __seg *>(SEG_PLANE_R);
|
|
VRAM_PLANE_G = reinterpret_cast<dots8_t __seg *>(SEG_PLANE_G);
|
|
VRAM_PLANE_E = reinterpret_cast<dots8_t __seg *>(SEG_PLANE_E);
|
|
}
|