2020-11-14 16:24:04 +00:00
|
|
|
// Temporary workaround copy of TH02's version, until we can put it into the
|
|
|
|
// regular SHARED segment for TH04's OP.EXE as well.
|
2021-03-21 18:35:04 +00:00
|
|
|
#pragma option -zCSHARED_
|
2020-11-14 16:24:04 +00:00
|
|
|
|
|
|
|
#include "master.hpp"
|
|
|
|
#include "th02/hardware/frmdelay.h"
|
|
|
|
|
2021-02-04 19:16:03 +00:00
|
|
|
void pascal frame_delay_2(int frames)
|
2020-11-14 16:24:04 +00:00
|
|
|
{
|
2023-01-30 03:57:33 +00:00
|
|
|
vsync_Count1 = 0;
|
2020-11-14 16:24:04 +00:00
|
|
|
while(vsync_Count1 < frames) {}
|
|
|
|
}
|