mirror of
https://github.com/forth-ev/VolksForth.git
synced 2025-01-09 13:32:05 +00:00
Extract screens $7e to $93 from vforth4_2.fth and make vf-c64 build independent
of vforth4_2.d64, i.e. for C64 VolksForth sources are fully text-file based. Only transient TC part still comes from tc38q.d64
This commit is contained in:
parent
e7dd310923
commit
45bc8879c8
@ -28,7 +28,7 @@ include vf-pr-target.fth
|
|||||||
|
|
||||||
\ The actual volksForth sources
|
\ The actual volksForth sources
|
||||||
include vf-sys-indep.fth
|
include vf-sys-indep.fth
|
||||||
$7E $93 thru \ CBM-Interface
|
include vf-sys-c64.fth
|
||||||
include vf-finalize.fth
|
include vf-finalize.fth
|
||||||
|
|
||||||
include vf-pr-target.fth
|
include vf-pr-target.fth
|
||||||
|
464
6502/C64/src/vf-sys-c64.fth
Normal file
464
6502/C64/src/vf-sys-c64.fth
Normal file
@ -0,0 +1,464 @@
|
|||||||
|
|
||||||
|
\ *** Block No. 126, Hexblock 7e
|
||||||
|
7e fthpage
|
||||||
|
|
||||||
|
\ CBM-Labels 05nov87re
|
||||||
|
|
||||||
|
$FFA5 >label ACPTR
|
||||||
|
$FFC6 >label CHKIN
|
||||||
|
$FFC9 >label CHKOUT
|
||||||
|
$FFD2 >label CHROUT
|
||||||
|
$FF81 >label CINT
|
||||||
|
$FFA8 >label CIOUT
|
||||||
|
$FFC3 >label CLOSE
|
||||||
|
$FFCC >label CLRCHN
|
||||||
|
$FFE4 >label GETIN
|
||||||
|
$FF84 >label IOINIT
|
||||||
|
$FFB1 >label LISTEN
|
||||||
|
$FFC0 >label OPEN
|
||||||
|
$FFF0 >label PLOT
|
||||||
|
$FF8A >label RESTOR
|
||||||
|
$FF93 >label SECOND
|
||||||
|
$FFE1 >label STOP
|
||||||
|
$FFB4 >label TALK
|
||||||
|
$FF96 >label TKSA
|
||||||
|
$FFEA >label UDTIM
|
||||||
|
$FFAE >label UNLSN
|
||||||
|
$FFAB >label UNTLK
|
||||||
|
$FFCF >label CHRIN
|
||||||
|
$FF99 >label MEMTOP
|
||||||
|
|
||||||
|
\ *** Block No. 127, Hexblock 7f
|
||||||
|
7f fthpage
|
||||||
|
|
||||||
|
\ C64-Labels clv13.4.87)
|
||||||
|
|
||||||
|
0E716 >label ConOut
|
||||||
|
09d >label MsgFlg
|
||||||
|
09a >label OutDev
|
||||||
|
099 >label InDev
|
||||||
|
0d020 >label BrdCol
|
||||||
|
0d021 >label BkgCol
|
||||||
|
0286 >label PenCol
|
||||||
|
0ae >label PrgEnd
|
||||||
|
0c1 >label IOBeg
|
||||||
|
0d4 >label CurFlg
|
||||||
|
0d8 >label InsCnt
|
||||||
|
028a >label KeyRep
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 129, Hexblock 81
|
||||||
|
81 fthpage
|
||||||
|
|
||||||
|
\ C64 c64key? getkey
|
||||||
|
|
||||||
|
Code c64key? ( -- flag)
|
||||||
|
0C6 lda
|
||||||
|
0<> ?[ 0FF # lda ]? pha
|
||||||
|
Push jmp end-code
|
||||||
|
|
||||||
|
Code getkey ( -- 8b)
|
||||||
|
0C6 lda 0<>
|
||||||
|
?[ sei 0277 ldy
|
||||||
|
[[ 0277 1+ ,X lda 0277 ,X sta inx
|
||||||
|
0C6 cpx 0= ?]
|
||||||
|
0C6 dec tya cli 0A0 # cmp
|
||||||
|
0= ?[ bl # lda ]?
|
||||||
|
]?
|
||||||
|
Push0A jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 130, Hexblock 82
|
||||||
|
82 fthpage
|
||||||
|
|
||||||
|
\ C64 curon curoff
|
||||||
|
|
||||||
|
Code curon ( --)
|
||||||
|
0D3 ldy 0D1 )Y lda 0CE sta 0CC stx
|
||||||
|
xyNext jmp end-code
|
||||||
|
|
||||||
|
Code curoff ( --)
|
||||||
|
iny 0CC sty 0CD sty 0CF stx
|
||||||
|
0CE lda 0D3 ldy 0D1 )Y sta
|
||||||
|
1 # ldy Next jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 131, Hexblock 83
|
||||||
|
83 fthpage
|
||||||
|
|
||||||
|
( #bs #cr ..keyboard clv12.4.87)
|
||||||
|
|
||||||
|
: c64key ( -- 8b)
|
||||||
|
curon BEGIN pause c64key? UNTIL
|
||||||
|
curoff getkey ;
|
||||||
|
|
||||||
|
14 Constant #bs 0D Constant #cr
|
||||||
|
|
||||||
|
: c64decode
|
||||||
|
( addr cnt1 key -- addr cnt2)
|
||||||
|
#bs case? IF dup IF del 1- THEN
|
||||||
|
exit THEN
|
||||||
|
#cr case? IF dup span ! exit THEN
|
||||||
|
>r 2dup + r@ swap c! r> emit 1+ ;
|
||||||
|
|
||||||
|
: c64expect ( addr len1 -- )
|
||||||
|
span ! 0
|
||||||
|
BEGIN dup span @ u<
|
||||||
|
WHILE key decode
|
||||||
|
REPEAT 2drop space ;
|
||||||
|
|
||||||
|
Input: keyboard [ here input ! ]
|
||||||
|
c64key c64key? c64decode c64expect ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 132, Hexblock 84
|
||||||
|
84 fthpage
|
||||||
|
|
||||||
|
( con! printable? clv11.4.87)
|
||||||
|
|
||||||
|
Code con! ( 8b --) SP X) lda
|
||||||
|
Label (con! ConOut jsr SP 2inc
|
||||||
|
Label (con!end CurFlg stx InsCnt stx
|
||||||
|
1 # ldy ;c: pause ;
|
||||||
|
|
||||||
|
Label (printable? \ for CBM-Code !
|
||||||
|
\ CS is printable
|
||||||
|
80 # cmp CC ?[ bl # cmp rts ]?
|
||||||
|
0E0 # cmp CC ?[ 0C0 # cmp rts ]?
|
||||||
|
clc rts end-code
|
||||||
|
|
||||||
|
Code printable? ( 8b -- 8b flag)
|
||||||
|
SP X) lda (printable? jsr CS ?[ dex ]?
|
||||||
|
txa PushA jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 133, Hexblock 85
|
||||||
|
85 fthpage
|
||||||
|
|
||||||
|
( emit cr del page at at? clv11.4.87)
|
||||||
|
|
||||||
|
Code c64emit ( 8b -- )
|
||||||
|
SP X) lda (printable? jsr
|
||||||
|
CC ?[ Ascii . # lda ]?
|
||||||
|
(con! jmp end-code
|
||||||
|
|
||||||
|
: c64cr #cr con! ;
|
||||||
|
|
||||||
|
: c64del 9D con! space 9D con! ;
|
||||||
|
|
||||||
|
: c64page 93 con! ;
|
||||||
|
|
||||||
|
Code c64at ( row col --)
|
||||||
|
2 # lda Setup jsr
|
||||||
|
N 2+ ldx N ldy clc PLOT jsr
|
||||||
|
(C16 \ ) 0D3 ldy 0D1 )Y lda 0CE sta
|
||||||
|
xyNext jmp end-code
|
||||||
|
|
||||||
|
Code c64at? ( -- row col)
|
||||||
|
SP 2dec txa SP )Y sta
|
||||||
|
sec PLOT jsr
|
||||||
|
28 # cpy tya CS ?[ 28 # sbc ]?
|
||||||
|
pha txa 0 # ldx SP X) sta pla
|
||||||
|
Push0A jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 134, Hexblock 86
|
||||||
|
86 fthpage
|
||||||
|
|
||||||
|
( type display (bye clv11.4.87)
|
||||||
|
|
||||||
|
Code c64type ( adr len -- )
|
||||||
|
2 # lda Setup jsr 0 # ldy
|
||||||
|
[[ N cpy 0<>
|
||||||
|
?[[ N 2+ )Y lda (printable? jsr
|
||||||
|
CC ?[ Ascii . # lda ]?
|
||||||
|
ConOut jsr iny ]]?
|
||||||
|
(con!end jmp end-code
|
||||||
|
|
||||||
|
Output: display [ here output ! ]
|
||||||
|
c64emit c64cr c64type c64del c64page
|
||||||
|
c64at c64at? ;
|
||||||
|
|
||||||
|
(C64 | Create (bye $FCE2 here 2- ! )
|
||||||
|
|
||||||
|
(C16- | Create (bye $FF52 here 2- ! )
|
||||||
|
|
||||||
|
(C16+ | CODE (bye rom $FF52 jmp end-code )
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 135, Hexblock 87
|
||||||
|
87 fthpage
|
||||||
|
|
||||||
|
\ b/blk drive >drive drvinit clv14:2x87
|
||||||
|
|
||||||
|
400 Constant b/blk
|
||||||
|
|
||||||
|
0AA Constant blk/drv
|
||||||
|
|
||||||
|
Variable (drv 0 (drv !
|
||||||
|
|
||||||
|
| : disk ( -- dev.no ) (drv @ 8 + ;
|
||||||
|
|
||||||
|
: drive ( drv# -- )
|
||||||
|
blk/drv * offset ! ;
|
||||||
|
|
||||||
|
: >drive ( block drv# -- block' )
|
||||||
|
blk/drv * + offset @ - ;
|
||||||
|
|
||||||
|
: drv? ( block -- drv# )
|
||||||
|
offset @ + blk/drv / ;
|
||||||
|
|
||||||
|
: drvinit noop ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 136, Hexblock 88
|
||||||
|
88 fthpage
|
||||||
|
|
||||||
|
( i/o busoff 10may85we)
|
||||||
|
|
||||||
|
Variable i/o 0 i/o ! \ Semaphore
|
||||||
|
|
||||||
|
Code busoff ( --) CLRCHN jsr
|
||||||
|
Label unlocki/o 1 # ldy 0 # ldx
|
||||||
|
;c: i/o unlock ;
|
||||||
|
|
||||||
|
Label nodevice 0 # ldx 1 # ldy
|
||||||
|
;c: busoff buffers unlock
|
||||||
|
true Abort" no device" ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 137, Hexblock 89
|
||||||
|
89 fthpage
|
||||||
|
|
||||||
|
\ ?device clv12jul87
|
||||||
|
|
||||||
|
Label (?dev
|
||||||
|
90 stx (C16 $ae sta ( ) LISTEN jsr
|
||||||
|
\ because of error in OS
|
||||||
|
60 # lda SECOND jsr UNLSN jsr
|
||||||
|
90 lda 0<> ?[ pla pla nodevice jmp ]?
|
||||||
|
rts end-code
|
||||||
|
|
||||||
|
Code (?device ( dev --)
|
||||||
|
SP X) lda (?dev jsr SP 2inc
|
||||||
|
unlocki/o jmp end-code
|
||||||
|
|
||||||
|
: ?device ( dev -- )
|
||||||
|
i/o lock (?device ;
|
||||||
|
|
||||||
|
Code (busout ( dev 2nd -- )
|
||||||
|
MsgFlg stx 2 # lda Setup jsr
|
||||||
|
N 2+ lda (?dev jsr
|
||||||
|
N 2+ lda LISTEN jsr
|
||||||
|
N lda 60 # ora SECOND jsr
|
||||||
|
N 2+ ldx OutDev stx
|
||||||
|
xyNext jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 138, Hexblock 8a
|
||||||
|
8a fthpage
|
||||||
|
|
||||||
|
\ busout/open/close/in clv12jul87
|
||||||
|
|
||||||
|
: busout ( dev 2nd -- )
|
||||||
|
i/o lock (busout ;
|
||||||
|
|
||||||
|
: busopen ( dev 2nd -- )
|
||||||
|
0F0 or busout ;
|
||||||
|
|
||||||
|
: busclose ( dev 2nd -- )
|
||||||
|
0E0 or busout busoff ;
|
||||||
|
|
||||||
|
Code (busin ( dev 2nd -- )
|
||||||
|
MsgFlg stx 2 # lda Setup jsr
|
||||||
|
N 2+ lda (?dev jsr
|
||||||
|
N 2+ lda TALK jsr
|
||||||
|
N lda 60 # ora (C16 $ad sta ( )
|
||||||
|
TKSA jsr
|
||||||
|
\ because of error in old C16 OS
|
||||||
|
N 2+ ldx InDev stx
|
||||||
|
xyNext jmp end-code
|
||||||
|
|
||||||
|
: busin ( dev 2nd -- )
|
||||||
|
i/o lock (busin ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 139, Hexblock 8b
|
||||||
|
8b fthpage
|
||||||
|
|
||||||
|
( bus-!/type/@/input derror? 24feb85re)
|
||||||
|
|
||||||
|
Code bus! ( 8b --)
|
||||||
|
SP X) lda CIOUT jsr (xydrop jmp
|
||||||
|
end-code
|
||||||
|
|
||||||
|
: bustype ( adr n --)
|
||||||
|
bounds ?DO I c@ bus! LOOP pause ;
|
||||||
|
|
||||||
|
Code bus@ ( -- 8b)
|
||||||
|
ACPTR jsr Push0A jmp end-code
|
||||||
|
|
||||||
|
: businput ( adr n --)
|
||||||
|
bounds ?DO bus@ I c! LOOP pause ;
|
||||||
|
|
||||||
|
: derror? ( -- flag )
|
||||||
|
disk $F busin bus@ dup Ascii 0 -
|
||||||
|
IF BEGIN emit bus@ dup #cr = UNTIL
|
||||||
|
0= cr THEN 0= busoff ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 140, Hexblock 8c
|
||||||
|
8c fthpage
|
||||||
|
|
||||||
|
( s#>s+t x,x 28may85re)
|
||||||
|
|
||||||
|
165 | Constant 1.t
|
||||||
|
1EA | Constant 2.t
|
||||||
|
256 | Constant 3.t
|
||||||
|
|
||||||
|
| : (s#>s+t ( sector# -- sect track)
|
||||||
|
dup 1.t u< IF 15 /mod exit THEN
|
||||||
|
3 + dup 2.t u< IF 1.t - 13 /mod 11 +
|
||||||
|
exit THEN
|
||||||
|
dup 3.t u< IF 2.t - 12 /mod 18 +
|
||||||
|
exit THEN
|
||||||
|
3.t - 11 /mod 1E + ;
|
||||||
|
|
||||||
|
| : s#>t+s ( sector# -- track sect )
|
||||||
|
(s#>s+t 1+ swap ;
|
||||||
|
|
||||||
|
| : x,x ( sect track -- adr count)
|
||||||
|
base push decimal
|
||||||
|
0 <# #s drop Ascii , hold #s #> ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 141, Hexblock 8d
|
||||||
|
8d fthpage
|
||||||
|
|
||||||
|
( readsector writesector 28may85re)
|
||||||
|
|
||||||
|
100 | Constant b/sek
|
||||||
|
|
||||||
|
: readsector ( adr tra# sect# -- flag)
|
||||||
|
disk 0F busout
|
||||||
|
" u1:13,0," count bustype
|
||||||
|
x,x bustype busoff pause
|
||||||
|
derror? ?exit
|
||||||
|
disk 0D busin b/sek businput busoff
|
||||||
|
false ;
|
||||||
|
|
||||||
|
: writesector ( adr tra# sect# -- flag)
|
||||||
|
rot disk 0F busout
|
||||||
|
" b-p:13,0" count bustype busoff
|
||||||
|
disk 0D busout b/sek bustype busoff
|
||||||
|
disk 0F busout
|
||||||
|
" u2:13,0," count bustype
|
||||||
|
x,x bustype busoff pause derror? ;
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 142, Hexblock 8e
|
||||||
|
8e fthpage
|
||||||
|
|
||||||
|
( 1541r/w 28may85re)
|
||||||
|
|
||||||
|
: diskopen ( -- flag)
|
||||||
|
disk 0D busopen Ascii # bus! busoff
|
||||||
|
derror? ;
|
||||||
|
|
||||||
|
: diskclose ( -- )
|
||||||
|
disk 0D busclose busoff ;
|
||||||
|
|
||||||
|
: 1541r/w ( adr blk file r/wf -- flag)
|
||||||
|
swap Abort" no file"
|
||||||
|
-rot blk/drv /mod dup (drv ! 3 u>
|
||||||
|
IF . ." beyond capacity" nip exit THEN
|
||||||
|
diskopen IF drop nip exit THEN
|
||||||
|
0 swap 2* 2* 4 bounds
|
||||||
|
DO drop 2dup I rot
|
||||||
|
IF s#>t+s readsector
|
||||||
|
ELSE s#>t+s writesector THEN
|
||||||
|
>r b/sek + r> dup IF LEAVE THEN
|
||||||
|
LOOP -rot 2drop diskclose ;
|
||||||
|
|
||||||
|
' 1541r/w Is r/w
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 143, Hexblock 8f
|
||||||
|
8f fthpage
|
||||||
|
|
||||||
|
\ index findex ink-pot 05nov87re
|
||||||
|
|
||||||
|
: index ( from to --)
|
||||||
|
1+ swap DO
|
||||||
|
cr I 2 .r I block 1+ 25 type
|
||||||
|
stop? IF LEAVE THEN LOOP ;
|
||||||
|
|
||||||
|
: findex ( from to --)
|
||||||
|
diskopen IF 2drop exit THEN
|
||||||
|
1+ swap DO cr I 2 .r
|
||||||
|
pad dup I 2* 2* s#>t+s readsector
|
||||||
|
>r 1+ 25 type
|
||||||
|
r> stop? or IF LEAVE THEN
|
||||||
|
LOOP diskclose ;
|
||||||
|
|
||||||
|
Create ink-pot
|
||||||
|
\ border bkgnd pen 0
|
||||||
|
(C64 6 c, 6 c, 3 c, 0 c, ) \ Forth
|
||||||
|
(C64 0E c, 6 c, 3 c, 0 c, ) \ Edi
|
||||||
|
(C64 6 c, 6 c, 3 c, 0 c, ) \ User
|
||||||
|
(C16 f6 c, 0f6 c, 03 c, 0 c, ) \ Forth
|
||||||
|
(C16 0eE c, 0f6 c, 03 c, 0 c, ) \ Edi
|
||||||
|
(C16 0f6 c, 0f6 c, 03 c, 0 c, ) \ User
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 144, Hexblock 90
|
||||||
|
90 fthpage
|
||||||
|
|
||||||
|
\ restore 05nov87re
|
||||||
|
|
||||||
|
Label asave 0 c, Label 1save 0 c,
|
||||||
|
|
||||||
|
Label continue
|
||||||
|
pha 1save lda 1 sta pla rti
|
||||||
|
|
||||||
|
Label restore sei asave sta
|
||||||
|
continue $100 /mod
|
||||||
|
# lda pha # lda pha php \ for RTI
|
||||||
|
asave lda pha txa pha tya pha
|
||||||
|
1 lda 1save sta
|
||||||
|
$36 # lda 1 sta \ Basic off ROM on
|
||||||
|
$7F # lda $DD0D sta
|
||||||
|
$DD0D ldy 0< ?[
|
||||||
|
Label 6526-NMI $FE72 jmp ]?
|
||||||
|
UDTIM jsr STOP jsr \ RUN/STOP ?
|
||||||
|
6526-NMI bne \ not >>-->
|
||||||
|
' restart @ jmp end-code
|
||||||
|
|
||||||
|
|
||||||
|
\ *** Block No. 145, Hexblock 91
|
||||||
|
91 fthpage
|
||||||
|
|
||||||
|
\ C64:Init 06nov87re
|
||||||
|
|
||||||
|
: init-system $FF40 dup $C0 cmove
|
||||||
|
[ restore ] Literal dup
|
||||||
|
$FFFA ! $318 ! ; \ NMI-Vector to RAM
|
||||||
|
|
||||||
|
Label first-init
|
||||||
|
sei cld
|
||||||
|
IOINIT jsr CINT jsr RESTOR jsr
|
||||||
|
\ init. and set I/O-Vectors
|
||||||
|
$36 # lda 01 sta \ Basic off
|
||||||
|
ink-pot lda BrdCol sta \ border
|
||||||
|
ink-pot 1+ lda BkgCol sta \ backgrnd
|
||||||
|
ink-pot 2+ lda PenCol sta \ pen
|
||||||
|
$80 # lda KeyRep sta \ repeat all keys
|
||||||
|
$17 # lda $D018 sta \ low/upp +
|
||||||
|
0 # lda $D01A sta \ VIC-IRQ off
|
||||||
|
$1B # lda $D011 sta \ Textmode on
|
||||||
|
4 # lda $288 sta \ low screen
|
||||||
|
cli rts end-code
|
||||||
|
first-init dup bootsystem 1+ !
|
||||||
|
warmboot 1+ !
|
||||||
|
Code c64init first-init jsr
|
||||||
|
xyNext jmp end-code
|
Loading…
x
Reference in New Issue
Block a user