2021-04-12 14:15:58 +00:00
|
|
|
#pragma option -zCSHARED
|
|
|
|
|
|
|
|
#include "platform.h"
|
|
|
|
#include "pc98.h"
|
|
|
|
#include "planar.h"
|
2021-01-20 17:14:20 +00:00
|
|
|
#include "th01/hardware/vplanset.h"
|
|
|
|
|
|
|
|
void vram_planes_set(void)
|
|
|
|
{
|
2021-02-03 17:12:06 +00:00
|
|
|
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);
|
2021-01-20 17:14:20 +00:00
|
|
|
}
|