mirror of https://github.com/nmlgc/ReC98.git
15 lines
346 B
C
15 lines
346 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 = (dots8_t __seg *)(SEG_PLANE_B);
|
|
VRAM_PLANE_R = (dots8_t __seg *)(SEG_PLANE_R);
|
|
VRAM_PLANE_G = (dots8_t __seg *)(SEG_PLANE_G);
|
|
VRAM_PLANE_E = (dots8_t __seg *)(SEG_PLANE_E);
|
|
}
|