1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 19:29:37 +00:00

Merge branch 'atari7800conio' of github.com:karrika/cc65 into atari7800conio

This commit is contained in:
Karri Kaksonen 2022-04-19 10:34:21 +03:00
commit f44af28a31
7 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
; Convert characters to screen codes ; Convert characters to screen codes
; Helper macro that converts and outputs one character ; Helper macro that converts and outputs one character
.macro _scrcode char .macro _scrcode char
.if (char >= 0) .and (char <= 31) .if (char >= 0) .and (char <= 31)

View File

@ -161,8 +161,8 @@ umula0:
jsr mono_gotoy jsr mono_gotoy
jsr popa jsr popa
jsr mono_gotox jmp mono_gotox
rts
.endproc .endproc
.proc mono_gotoxy .proc mono_gotoxy
@ -197,8 +197,8 @@ umula0:
.segment "ONCE" .segment "ONCE"
mono_init_cursor: mono_init_cursor:
lda #0 lda #0
jsr calccursorzone jmp calccursorzone
rts
;----------------------------------------------------------------------------- ;-----------------------------------------------------------------------------
; force the init constructor to be imported ; force the init constructor to be imported

View File

@ -31,7 +31,7 @@ else
CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65) CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65) LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65)
SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65) SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65)
endif endif
EXELIST_atari2600 = \ EXELIST_atari2600 = \
hello hello

View File

@ -31,7 +31,7 @@ else
CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65) CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65) LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65)
SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65) SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65)
endif endif
ifneq ($(filter disk samples.%,$(MAKECMDGOALS)),) ifneq ($(filter disk samples.%,$(MAKECMDGOALS)),)
ifdef CC65_HOME ifdef CC65_HOME

View File

@ -44,7 +44,7 @@ else
CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65) CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65) LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65)
SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65) SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65)
endif endif
DIRLIST = grc DIRLIST = grc

View File

@ -31,7 +31,7 @@ else
CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65) CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65) LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65)
SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65) SP := $(if $(wildcard ../../bin/sp65*),../../bin/sp65,sp65)
endif endif
EXELIST_supervision = \ EXELIST_supervision = \
hello hello

View File

@ -29,7 +29,7 @@ else
CC := $(if $(wildcard ../../bin/cc65*),../../bin/cc65,cc65) CC := $(if $(wildcard ../../bin/cc65*),../../bin/cc65,cc65)
CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65) CL := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65) LD := $(if $(wildcard ../../bin/ld65*),../../bin/ld65,ld65)
endif endif
EXELIST_atari2600 = \ EXELIST_atari2600 = \
notavailable notavailable