display: Fix unbalanced comment and line ending.
The use of the DAC (program counter) isn't fully implemented yet, so is put inside NOTYET.
This commit is contained in:
parent
2f04109f0d
commit
5e8f48034d
1 changed files with 4 additions and 2 deletions
|
@ -115,7 +115,9 @@ enum jump_type { DJP=2, DJS=3, DDS=1 }; /* type 347 */
|
||||||
|
|
||||||
/* put all the state in a struct "just in case" */
|
/* put all the state in a struct "just in case" */
|
||||||
static struct type340 {
|
static struct type340 {
|
||||||
/* ty340word DAC; /* Display Address Counter */
|
#ifdef NOTYET
|
||||||
|
ty340word DAC; /* Display Address Counter */
|
||||||
|
#endif
|
||||||
ty340word status; /* see ST340_XXX in type340.h */
|
ty340word status; /* see ST340_XXX in type340.h */
|
||||||
signed short xpos, ypos; /* 10 bits, signed (for OOB checks) */
|
signed short xpos, ypos; /* 10 bits, signed (for OOB checks) */
|
||||||
char initialized; /* 0 before display_init */
|
char initialized; /* 0 before display_init */
|
||||||
|
@ -174,7 +176,7 @@ ty340_reset(void *dptr)
|
||||||
#if TYPE342
|
#if TYPE342
|
||||||
u->shift = 0;
|
u->shift = 0;
|
||||||
u->width = 6;
|
u->width = 6;
|
||||||
u->height = 11;
|
u->height = 11;
|
||||||
#endif
|
#endif
|
||||||
#if TYPE347
|
#if TYPE347
|
||||||
u->SAVE_FF = 0;
|
u->SAVE_FF = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue