Merge branch 'cc65:master' into master

This commit is contained in:
Rutger van Bergen
2022-12-26 13:57:10 +01:00
committed by GitHub
335 changed files with 7282 additions and 3585 deletions

View File

@@ -762,6 +762,7 @@ TARGETS := \
define TARGET_recipe
@echo making targettest for: $(T)
@$(MAKE) -j2 SYS:=$(T)
@$(MAKE) --no-print-directory clean SYS:=$(T)

View File

@@ -130,9 +130,11 @@ void main(void)
case CH_ENTER:
clrscr();
return;
#ifdef CH_CURS_LEFT
case CH_CURS_LEFT:
inpos = (inpos - 1) % 8;
break;
#endif
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
(void)textcolor(i - '0');
@@ -164,7 +166,9 @@ void main(void)
default:
cputc(i);
/* fallthrough */
#ifdef CH_CURS_RIGHT
case CH_CURS_RIGHT:
#endif
inpos = (inpos + 1) % 8;
}
#endif

View File

@@ -73,4 +73,7 @@ endif
dd if=$< bs=8K count=${COUNT} >> $@
clean:
@$(DEL) conio.o conio.??? 2>$(NULLDEV)
@$(DEL) conio.o 2>$(NULLDEV)
@$(DEL) conio.pce 2>$(NULLDEV)
@$(DEL) conio.bin 2>$(NULLDEV)
@$(DEL) conio.map 2>$(NULLDEV)