14 lines
390 B
C
14 lines
390 B
C
// C translation of chunk2 ($F600-$FBFF): the course plotter, the
|
|
// altimeter's 10,000 ft hand, wind and turbulence, and the 64K demo.
|
|
|
|
#ifndef CHUNK2_H
|
|
#define CHUNK2_H
|
|
|
|
void chunk2ApplyWind(void);
|
|
void chunk2ComputeWindComponents(void);
|
|
void chunk2CoursePlottingMenu(void);
|
|
void chunk2DemoMode64K(void);
|
|
void chunk2UpdateAltimeter10K(void);
|
|
void chunk2UpdateCoursePlotter(void);
|
|
|
|
#endif
|