saturn-examples/common/vdp2_func.hpp
Zack Buhman 8e243a435e wordle: initial
Almost nothing is implemented.
2023-05-09 14:54:47 -07:00

21 lines
391 B
C++

static inline void v_blank_out() {
/*
v
_____
____| |____
*/
while ((vdp2.reg.TVSTAT & TVSTAT__VBLANK) == 0);
while ((vdp2.reg.TVSTAT & TVSTAT__VBLANK) != 0);
}
static inline void v_blank_in() {
/*
v
_____
____| |____
*/
while ((vdp2.reg.TVSTAT & TVSTAT__VBLANK) != 0);
while ((vdp2.reg.TVSTAT & TVSTAT__VBLANK) == 0);
}