-
Notifications
You must be signed in to change notification settings - Fork 0
/
Basic68k.s
10170 lines (7965 loc) · 397 KB
/
Basic68k.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.extern RBASIC_START
.extern listing
.extern RAPTOR_particle_gfx
.extern RAPTOR_sprite_table
.extern RAPTOR_module_list
.extern RUPDALL_FLAG
.extern pixel_list
include "RAPTOR/INCS/RAPTOR.INC" ; Include RAPTOR library labels
include "U235SE.021/U235SE.INC" ; Include U235SE library labels
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ;
; Enhanced BASIC for the Motorola MC680xx ;
; ;
; This is the generic version with I/O and LOAD/SAVE example code for the ;
; EASy68k editor/simulator. 2002-2012. ;
; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ;
; Copyright(C) 2002-12 by Lee Davison. This program may be freely distributed ;
; for personal use only. All commercial rights are reserved. ;
; ;
; More 68000 and other projects can be found on my website at .. ;
; ;
; http://mycorner.no-ip.org/index.html ;
; ;
; mail : [email protected] ;
; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; <~ggn> after your init, just put your ram pointer to a0, ram size to d0 and jump to LAB_COLD
; Ver 3.52
; Ver 3.52 stops USING$() from reading beyond the end of the format string
; Ver 3.51 fixes the UCASE$() and LCASE$() functions for null strings
; Ver 3.50 uniary minus in concatenate generates a type mismatch error
; Ver 3.49 doesn't tokenise 'DEF' or 'DEC' within a hex value
; Ver 3.48 allows scientific notation underflow in the USING$() function
; Ver 3.47 traps the use of array elements as the FOR loop variable
; Ver 3.46 updates function and function variable handling
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; Ver 3.45 makes the handling of non existant variables consistent and gives the
; option of not returning an error for a non existant variable. If this is the
; behaviour you want just change novar to some non zero value
; OPT D+
; OFFSET 0 ; start of RAM
; RSRESET
;ram_strt: RS.L 256
ram_strt EQU 0
; rept $100
; dc.l 0
; endr
;ds.l $100 ; allow 1K for the stack, this should be plenty
; for any BASIC program that doesn't do something
; silly, it could even be much less.
ram_base equ ram_strt+1024
LAB_WARM equ ram_base ;RS.W 1 ; BASIC warm start entry point
Wrmjpv equ LAB_WARM+2 ;RS.L 1 ; BASIC warm start jump vector
Usrjmp EQU Wrmjpv+4 ;RS.W 1 ; USR function JMP address
Usrjpv EQU Usrjmp+2 ;RS.L 1 ; USR function JMP vector
;; system dependant i/o vectors
;; these are in RAM and are set at start-up
V_INPT EQU Usrjpv+4 ;RS.W 1 ; non halting scan input device entry point
V_INPTv EQU V_INPT+2 ;RS.L 1 ; non halting scan input device jump vector
V_OUTP EQU V_INPTv+4 ;RS.W 1 ; send byte to output device entry point
V_OUTPv EQU V_OUTP+2 ;RS.L 1 ; send byte to output device jump vector
V_LOAD EQU V_OUTPv+4 ;RS.W 1 ; load BASIC program entry point
V_LOADv EQU V_LOAD+2 ;RS.L 1 ; load BASIC program jump vector
V_SAVE EQU V_LOADv+4 ;RS.W 1 ; save BASIC program entry point
V_SAVEv EQU V_SAVE+2 ;RS.L 1 ; save BASIC program jump vector
V_CTLC EQU V_SAVEv+4 ;RS.W 1 ; save CTRL-C check entry point
V_CTLCv EQU V_CTLC+2 ;RS.L 1 ; save CTRL-C check jump vector
Itemp EQU V_CTLCv+4 ;RS.L 1 ; temporary integer (for GOTO etc)
Smeml EQU Itemp+4 ;RS.L 1 ; start of memory (start of program)
;; the program is stored as a series of lines each line having the following format
;*
;* ds.l 1 ; pointer to the next line or $00000000 if [EOT]
;* ds.l 1 ; line number
;* ds.b n ; program bytes
;* dc.b $00 ; [EOL] marker, there will be a second $00 byte, if
;* ; needed, to pad the line to an even number of bytes
Sfncl EQU Smeml+4 ;RS.L 1 ; start of functions (end of Program)
;; the functions are stored as function name, function execute pointer and function
;; variable name
;*
;* ds.l 1 ; name
;* ds.l 1 ; execute pointer
;* ds.l 1 ; function variable
Svarl EQU Sfncl+4 ;RS.L 1 ; start of variables (end of functions)
;; the variables are stored as variable name, variable value
;*
;* ds.l 1 ; name
;* ds.l 1 ; packed float or integer value
Sstrl EQU Svarl+4 ;RS.L 1 ; start of strings (end of variables)
;; the strings are stored as string name, string pointer and string length
;*
;* ds.l 1 ; name
;* ds.l 1 ; string pointer
;* ds.w 1 ; string length
Sarryl EQU Sstrl+4 ;RS.L 1 ; start of arrays (end of strings)
;; the arrays are stored as array name, array size, array dimensions count, array
;; dimensions upper bounds and array elements
;*
;* ds.l 1 ; name
;* ds.l 1 ; size including this header
;* ds.w 1 ; dimensions count
;* ds.w 1 ; 1st dimension upper bound
;* ds.w 1 ; 2nd dimension upper bound
;* ... ; ...
;* ds.w 1 ; nth dimension upper bound
;*
;; then (i1+1)*(i2+1)...*(in+1) of either ..
;*
;* ds.l 1 ; packed float or integer value
;*
;; .. if float or integer, or ..
;*
;* ds.l 1 ; string pointer
;* ds.w 1 ; string length
;*
;; .. if string
Earryl EQU Sarryl+4 ;RS.L 1 ; end of arrays (start of free mem)
Sstorl EQU Earryl+4 ;RS.L 1 ; string storage (moving down)
Ememl EQU Sstorl+4 ;RS.L 1 ; end of memory (upper bound of RAM)
Sutill EQU Ememl+4 ;RS.L 1 ; string utility ptr
Clinel EQU Sutill+4 ;RS.L 1 ; current line (Basic line number)
Blinel EQU Clinel+4 ;RS.L 1 ; break line (Basic line number)
Cpntrl EQU Blinel+4 ;RS.L 1 ; continue pointer
Dlinel EQU Cpntrl+4 ;RS.L 1 ; current DATA line
Dptrl EQU Dlinel+4 ;RS.L 1 ; DATA pointer
Rdptrl EQU Dptrl+4 ;RS.L 1 ; read pointer
Varname EQU Rdptrl+4 ;RS.L 1 ; current var name
Cvaral EQU Varname+4 ;RS.L 1 ; current var address
Lvarpl EQU Cvaral+4 ;RS.L 1 ; variable pointer for LET and FOR/NEXT
des_sk_e EQU Lvarpl+4 ;RS.L 6 ; descriptor stack end address
des_sk EQU des_sk_e+(4*6) ;RS.W 1 ; descriptor stack start address
; use a4 for the descriptor pointer
Ibuffs EQU des_sk+2 ;RS.L $40
; rept $40
; dc.l 0
; endr
; ds.l $40 ; start of input buffer
Ibuffe EQU Ibuffs+($40*4) ;^^RSCOUNT
; end of input buffer
FAC1_m EQU Ibuffe ; RS.L 1 ; FAC1 mantissa1
FAC1_e EQU FAC1_m+4 ; RS.W 1 ; FAC1 exponent
FAC1_s EQU FAC1_e+1 ; FAC1 sign (b7)
;EQU RS.W 1
FAC2_m EQU FAC1_e+4 ;RS.L 1 ; FAC2 mantissa1
FAC2_e EQU FAC2_m+4 ; RS.L 1 ; FAC2 exponent
FAC2_s EQU FAC2_e+1 ; FAC2 sign (b7)
FAC_sc EQU FAC2_e+2 ; FAC sign comparison, Acc#1 vs #2
flag EQU FAC2_e+3 ; flag byte for divide routine
PRNlword EQU FAC2_e+4 ;RS.L 1 ; PRNG seed long word
ut1_pl EQU PRNlword+4 ;RS.L 1 ; utility pointer 1
Asptl EQU ut1_pl+4 ;RS.L 1 ; array size/pointer
Astrtl EQU Asptl+4 ;RS.L 1 ; array start pointer
numexp EQU Astrtl ; string to float number exponent count
expcnt EQU Astrtl+1 ; string to float exponent count
expneg EQU Astrtl+3 ; string to float eval exponent -ve flag
func_l EQU Astrtl+4 ;RS.L 1 ; function pointer
; ; these two need to be a word aligned pair !
Defdim EQU func_l+4 ;RS.W 1 ; default DIM flag
cosout EQU Defdim ; flag which CORDIC output (re-use byte)
Dtypef EQU Defdim+1 ; data type flag, $80=string, $40=integer, $00=float
Binss EQU Defdim+2 ;RS.L 4 ; number to bin string start (32 chrs)
Decss EQU Binss+(4*4) ;RS.L 1 ; number to decimal string start (16 chrs)
; RS.W 1 ;*
Usdss EQU Decss+6 ; RS.W 1 ; unsigned decimal string start (10 chrs)
Hexss EQU Usdss+2 ; RS.L 2 ; number to hex string start (8 chrs)
BHsend EQU Hexss+(4*2) ; RS.W 1 ; bin/decimal/hex string end
prstk EQU BHsend+2 ;RS.B 1 ; stacked function index
tpower EQU prstk+1 ;RS.B 1 ; remember CORDIC power
Asrch EQU tpower+1 ;RS.B 1 ; scan-between-quotes flag, alt search character
Dimcnt EQU Asrch+1 ;RS.B 1 ; # of dimensions
Breakf EQU Dimcnt+1 ;RS.B 1 ; break flag, $00=END else=break
Oquote EQU Breakf+1 ;RS.B 1 ; open quote flag (Flag: DATA; LIST; memory)
Gclctd EQU Oquote+1 ;RS.B 1 ; garbage collected flag
Sufnxf EQU Gclctd+1 ;RS.B 1 ; subscript/FNX flag, 1xxx xxx = FN(0xxx xxx)
Imode EQU Sufnxf+1 ;RS.B 1 ; input mode flag, $00=INPUT, $98=READ
Cflag EQU Imode+1 ; RS.B 1 ; comparison evaluation flag
TabSiz EQU Cflag+1 ; RS.B 1 ; TAB step size
comp_f EQU TabSiz+1 ; RS.B 1 ; compare function flag, bits 0,1 and 2 used
; ; bit 2 set if >
; ; bit 1 set if =
; ; bit 0 set if <
Nullct EQU comp_f+1 ; RS.B 1 ; nulls output after each line
TPos EQU Nullct+1 ; RS.B 1 ; BASIC terminal position byte
TWidth EQU TPos+1 ; RS.B 1 ; BASIC terminal width byte
Iclim EQU TWidth+1 ; RS.B 1 ; input column limit
ccflag EQU Iclim+1 ; RS.B 1 ; CTRL-C check flag
ccbyte EQU ccflag+1 ; RS.B 1 ; CTRL-C last received byte
ccnull EQU ccbyte+1 ; RS.B 1 ; CTRL-C last received byte 'life' timer
;; these variables for simulator load/save routines
file_byte EQU ccnull+1 ; RS.B 1 ; load/save data byte
file_id EQU file_byte+1 ; RS.L 1 ; load/save file ID
;RS.W 1 ; dummy even value and zero pad byte
prg_strt EQU file_id+6 ; ^^RSCOUNT
;ORG ;*
; pea cls(PC)
; move.w #9,-(SP)
; trap #1
; addq.l #6,SP
; lea RAM,A0
; move.l #RAM_SIZE,D0
; bra LAB_COLD
;cls: DC.B 27,'E',0
; EVEN
novar .EQU 0 ; non existant variables cause errors
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
; Ver 3.44 adds overflow indication to the USING$() function
; Ver 3.43 removes an undocumented feature of concatenating null strings
; Ver 3.42 reimplements backspace so that characters are overwritten with [SPACE]
; Ver 3.41 removes undocumented features of the USING$() function
; Ver 3.40 adds the USING$() function
; Ver 3.33 adds the file r.EQUester to LOAD and SAVE
; Ver 3.32 adds the optional ELSE clause to IF .. THEN
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; Version 3.25 adds the option to change the behaviour of INPUT so that a null
; response does not cause a program break. If this is the behaviour you want just
; change nobrk to some non zero value.
nobrk .EQU 0 ; null response to INPUT causes a break
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; Version 3.xx replaces the fixed RAM addressing from previous versions with a RAM
; pointer in a3. this means that this could now be run as a task on a multitasking
; system where memory resources may change.
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
; INCLUDE "Basic68k.inc"
; RAM offset definitions
; ORG $000400 ; past the vectors in a real system
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;
; parse a plain ASCII file instead of having to enter it.
; a6 has the pointer to the text. terminate the text with a null.
; text can have either CRLF (Windows) or LF (Unix) line endings.
PARSE_FILE:
lea Ibuffs(A3),A5 ; buffer space to temporarily store the current line (we need to terminate it with a NULL at the end)
movea.l A5,A1 ; copy line buffer pointer to a1
PARSE_FILE_loop:
move.b (A6)+,D0 ; read a character
beq.s PARSE_FILE_out ; end of file? clear off if yes
cmp.b #13,D0 ; CR?
beq.s PARSE_FILE_loop ; if yes, skip it (whatever happens we'll either wait for a LF character for EOL)
cmp.b #10,D0 ; LF?
beq.s PARSE_FILE_do_parse ; yep, so we're done. go parse the line
move.b D0,(A1)+ ; if we got here, then we have a valid character - copy it to the line buffer
bra.s PARSE_FILE_loop ; and loop back
PARSE_FILE_do_parse_fix:
subq.l #1,A6 ; if we got here, then we have a file whose
; last line has code and isn't terminated by return. since we already parsed the null, decrease input pointer so we'll reparse it next iteration
PARSE_FILE_do_parse:
clr.b (A1) ; zero the last byte for the parser
zz:
; movea.l Smeml(A3),A0 ; start of program memory
; lea $3F8000,A0
movea.l A5,A0
bsr LAB_1295 ; a0=output buffer, a5=input buffer
; TODO: checks to see if a syntax error occurs or anything.
bra.s PARSE_FILE ; and go to next line
PARSE_FILE_out:
lea Ibuffs(A3),A0 ; buffer space to temporarily store the current line (we need to terminate it with a NULL at the end)
cmpa.l A0,A5 ; one last check before we go: does the file buffer contain anything? (i.e. last line might not be terminated by a return)
bne.s PARSE_FILE_do_parse_fix ; if it does, parse that line too
bra LAB_RUN
rts ; otherwise take the highway
;parse_file_buffer:
; REPT 64
; DC.L 0
; ENDR
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; the following code is simulator specific, change to suit your system
; output character to the console from register d0.b
VEC_OUT: movem.l D0-A6,-(SP) ; save d0, d1
move.b d0,VEC_OUT_char
move.l rap_c_y,d1
move.l rap_c_x,d2
cmp.b #$0a,d0
beq .done_update
cmp.b #$0d,d0
bne .print
clr.l d2 ; clear x
add.l #8,d1 ; inc y
bra .done_update
.print: cmp.l #200,d1
bne .do_out
lea RAPTOR_particle_gfx,a0
lea 1280(a0),a1
move.l #639,d7
.up: movem.l (a1)+,d0-d6/a2-a6
movem.l d0-d6/a2-a6,(a0)
lea 48(a0),a0
dbra d7,.up
move.l #((160*8)/16)-1,d7
.clr: clr.l (a0)+
clr.l (a0)+
clr.l (a0)+
clr.l (a0)+
dbra d7,.clr
lea scrnbuffer,a0
lea 40(a0),a1
move.l #((10*23)/4)-1,d7
.scrl: move.l (a1)+,(a0)+
dbra d7,.scrl
moveq #0,d2
move.l #192,d1
.do_out: move.l d1,rap_c_y
move.l d2,d0
addq #8,d2
move.l d2,rap_c_x
lea VEC_OUT_char(pc),a0
moveq #0,d2
moveq #0,d3
jsr RAPTOR_print
move.l rap_c_x,d1
move.l rap_c_y,d2
asr #3,d1
asr #3,d2
mulu #40,d2
subq #1,d1
lea scrnbuffer,a0
add.w d1,a0
add.w d2,a0
move.b VEC_OUT_char,(a0)
.done: movem.l (SP)+,D0-A6 ; restore d0, d1
rts
.done_update: move.l d1,rap_c_y
move.l d2,rap_c_x
movem.l (SP)+,D0-A6 ; restore d0, d1
rts
VEC_OUT_char: DC.B 0,-1
rap_c_x: dc.l 0
rap_c_y: dc.l 0
scrnbuffer:
.rept 24
dc.b ' '
dc.b ' '
.endr
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; input a character from the console into register d0
; else return Cb=0 if there's no character available
VEC_IN:
; move.l D1,-(SP) ; save d1
; moveq #7,D0 ; get the status
; trap #15 ; do I/O function
; move.b D1,D0 ; copy the returned status
; bne.s RETCHR ; if a character is waiting go get it
; move.l (SP)+,D1 ; else restore d1
; tst.b D0 ; set the z flag
;; ANDI.b #$FE,CCR ; clear the carry, flag we got no byte
;; ; done by the TST.b
movem.l D1/A0-A1,-(SP)
move.w #2,-(SP)
move.w #2,-(SP)
trap #13
addq.l #4,SP
movem.l (SP)+,D1/A0-A1
tst.b D0
beq.s VEC_IN_EXIT
ori #1,CCR
VEC_IN_EXIT:
rts
RETCHR:
moveq #5,D0 ; get byte form the keyboard
trap #15 ; do I/O function
move.b D1,D0 ; copy the returned byte
move.l (SP)+,D1 ; restore d1
tst.b D0 ; set the z flag on the received byte
ori #1,CCR ; set the carry, flag we got a byte
rts
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; LOAD routine for the Easy68k simulator
VEC_LD:
lea load_title(PC),A1 ; set the LOAD r.EQUest title string pointer
bsr get_filename ; get the filename from the line or the r.EQUest
beq LAB_FCER ; if null do function call error then warm start
move.w #51,D0 ; open existing file
trap #15 ; do I/O function
tst.w D0 ; test load result
bne.s LOAD_exit ; if error clear up and exit
move.l D1,file_id(A3) ; save the file ID
lea LOAD_in(PC),A1 ; get byte from file vector
move.l A1,V_INPTv(A3) ; set the input vector
bra LAB_127D ; now we just wait for Basic command, no "Ready"
LOAD_exit:
bsr LAB_147A ; go do "CLEAR"
bra LAB_1274 ; BASIC warm start entry, go wait for Basic
; command
; input character to register d0 from file
LOAD_in:
movem.l D1-D2/A1,-(SP) ; save d1, d2 & a1
move.l file_id(A3),D1 ; get file ID back
lea file_byte(A3),A1 ; point to byte buffer
moveq #1,D2 ; set count for one byte
moveq #53,D0 ; read from file
trap #15 ; do I/O function
tst.w D0 ; test status
bne.s LOAD_eof ; branch if byte read failed
move.b (A1),D0 ; get byte
movem.l (SP)+,D1-D2/A1 ; restore d1, d2 & a1
ori #1,CCR ; set carry, flag we got a byte
rts
; got an error on read so restore the input
; vector and tidy up
LOAD_eof:
moveq #50,D0 ; close all files
trap #15 ; do I/O function
lea VEC_IN(PC),A1 ; get byte from input device vector
move.l A1,V_INPTv(A3) ; set input vector
moveq #0,D0 ; clear byte
movem.l (SP)+,D1-D2/A1 ; restore d1, d2 & a1
bsr LAB_147A ; do CLEAR, erase variables/functions and
; flush stacks
bra LAB_1274 ; BASIC warm start entry, go wait for Basic
; command
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; get the filename from the line or from the filename r.EQUester
*
; if the name is null, "", or there is nothing following then the r.EQUester is used
; to get a filename else the filename is got from the line. if the r.EQUester is used
; the name buffer is allocated in string space and is always null terminated before
; it is passed to the file r.EQUester
get_filename:
beq.s get_name ; if no following go use the r.EQUester
get_file:
move.l A1,-(SP) ; save the title string pointer
subq.w #1,A5 ; decrement the execute pointer
bsr LAB_GVAL ; get value from line
movea.l (SP)+,A1 ; restore the title string pointer
tst.b Dtypef(A3) ; test the data type flag
bpl LAB_TMER ; if not string type do type mismatch error
movea.l FAC1_m(A3),A2 ; get the descriptor pointer
move.w 4(A2),D1 ; get the string length
beq.s get_name ; if null go use the file r.EQUester
movea.l (A2),A1 ; get the string pointer
move.w D1,D0 ; copy the string length
addq.w #1,D1 ; increment the string length
bsr LAB_2115 ; make space d1 bytes long
move.b #$00,0(A0,D0.w) ; null terminate the new string
subq.w #1,D0 ; decrement the string length
name_copy:
move.b 0(A1,D0.w),0(A0,D0.w) ; copy a file name byte
dbra D0,name_copy ; loop while more to do
movea.l A0,A1 ; copy the new, terminated, file name pointer
movea.l A2,A0 ; copy the old filename descriptor pointer
bra LAB_22B6 ; pop string off descriptor stack or from memory
; returns with d0 = length, a0 = pointer
; get a name with the file r.EQUester
get_name:
move.l A3,-(SP) ; save the variables base pointer
move.w #$0100,D1 ; enough space for the r.EQUest filename
bsr LAB_2115 ; make space d1 bytes long
movea.l A0,A3 ; copy the file name buffer pointer
lea file_list(PC),A2 ; set the file types list pointer
moveq #0,D1 ; file open
move.b D1,(A3) ; ensure initial null file name
moveq #58,D0 ; file I/O
trap #15
movea.l A3,A1 ; copy the file name pointer
movea.l (SP)+,A3 ; restore the variables pointer
tst.l D1 ; did the user hit open
rts
load_title:
DC.B 'LOAD file',0 ; LOAD file title string
save_title:
DC.B 'SAVE file',0 ; SAVE file title string
file_list:
DC.B '*.bas',0 ; file type list
DC.W 0 ; ensure even
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;
; SAVE routine for the Easy68k simulator
VEC_SV:
lea save_title(PC),A1 ; set the SAVE r.EQUest title string pointer
pea SAVE_RTN(PC) ; set the return point
beq.s get_name ; if no following go use the file r.EQUester
cmp.b #',',D0 ; compare the following byte with ","
bne get_file ; if not "," get the filename from the line
beq.s get_name ; else go use the file r.EQUester
SAVE_RTN:
beq LAB_FCER ; if null do function call error then warm start
movea.l A0,A1 ; copy filename pointer
move.w #52,D0 ; open new file
trap #15 ; do I/O function
tst.w D0 ; test save result
bne LAB_FCER ; if error do function call error, warm start
move.l D1,file_id(A3) ; save file ID
move.l V_OUTPv(A3),-(SP) ; save the output vector
lea SAVE_OUT(PC),A1 ; send byte to file vector
move.l A1,V_OUTPv(A3) ; change the output vector
move.b TWidth(A3),-(SP) ; save the current line length
move.b #$00,TWidth(A3) ; set infinite length line for save
bsr LAB_GBYT ; get next BASIC byte
beq SAVE_bas ; if no following go do SAVE
cmp.b #',',D0 ; else compare with ","
bne LAB_SNER ; if not "," so go do syntax error/warm start
bsr LAB_IGBY ; increment & scan memory
SAVE_bas:
bsr LAB_LIST ; go do list (line numbers applicable)
move.b (SP)+,TWidth(A3) ; restore the line length
move.l (SP)+,V_OUTPv(A3) ; restore the output vector
moveq #50,D0 ; close all files
trap #15 ; do I/O function
rts
; output character to file from register d0
SAVE_OUT:
movem.l D0-D2/A1,-(SP) ; save d0, d1, d2 & a1
move.l file_id(A3),D1 ; get file ID back
lea file_byte(A3),A1 ; point to byte buffer
move.b D0,(A1) ; save byte
moveq #1,D2 ; set byte count
moveq #54,D0 ; write to file
trap #15 ; do I/O function
movem.l (SP)+,D0-D2/A1 ; restore d0, d1, d2 & a1
rts
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; turn off simulator key echo
;code_start:
; moveq #12,D0 ; keyboard echo
; moveq #0,D1 ; turn off echo
; trap #15 ; do I/O function
; to tell EhBASIC where and how much RAM it has pass the address in a0 and the size
; in d0. these values are at the end of the .inc file
; movea.l #ram_addr,A0 ; tell BASIC where RAM starts
; move.l #ram_size,D0 ; tell BASIC how big RAM is
; end of simulator specific code
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
;*
; Register use :- (must improve this !!)
;*
; a6 - temp Bpntr ; temporary BASIC execute pointer
; a5 - Bpntr ; BASIC execute (get byte) pointer
; a4 - des_sk ; descriptor stack pointer
; a3 - ram_strt ; start of RAM. all RAM references are offsets
; ; from this value
;*
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; BASIC cold start entry point. assume entry with RAM address in a0 and RAM length
; in d0
LAB_COLD:
cmp.l #$4000,D0 ; compare size with 16k
bge.s LAB_sizok ; branch if >= 16k
moveq #5,D0 ; error 5 - not enough RAM
rts ; just exit. this as stands will never execute
; but could be used to exit back to an OS
LAB_sizok:
movea.l A0,A3 ; copy RAM base to a3
adda.l D0,A0 ; a0 is top of RAM
move.l A0,Ememl(A3) ; set end of mem
lea ram_base(A3),SP ; set stack to RAM start + 1k
move.w #$4EF9,D0 ; JMP opcode
movea.l SP,A0 ; point to start of vector table
move.w D0,(A0)+ ; LAB_WARM
lea LAB_COLD(PC),A1 ; initial warm start vector
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; Usrjmp
lea LAB_FCER(PC),A1 ; initial user function vector
; "Function call" error
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; V_INPT JMP opcode
lea VEC_IN(PC),A1 ; get byte from input device vector
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; V_OUTP JMP opcode
lea VEC_OUT(PC),A1 ; send byte to output device vector
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; V_LOAD JMP opcode
lea VEC_LD(PC),A1 ; load BASIC program vector
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; V_SAVE JMP opcode
lea VEC_SV(PC),A1 ; save BASIC program vector
move.l A1,(A0)+ ; set vector
move.w D0,(A0)+ ; V_CTLC JMP opcode
lea VEC_CC(PC),A1 ; save CTRL-C check vector
move.l A1,(A0)+ ; set vector
; set-up start values
;*##
LAB_GMEM:
moveq #$00,D0 ; clear d0
move.b D0,Nullct(A3) ; default NULL count
move.b D0,TPos(A3) ; clear terminal position
move.b D0,ccflag(A3) ; allow CTRL-C check
move.w D0,prg_strt-2(A3) ; clear start word
move.w D0,BHsend(A3) ; clear value to string end word
move.b #40,TWidth(A3) ; default terminal width byte for simulator
move.b #$0E,TabSiz(A3) ; save default tab size = 14
move.b #$38,Iclim(A3) ; default limit for TAB = 14 for simulator
lea des_sk(A3),A4 ; set descriptor stack start
lea prg_strt(A3),A0 ; get start of mem
move.l A0,Smeml(A3) ; save start of mem
bsr LAB_1463 ; do "NEW" and "CLEAR"
bsr LAB_CRLF ; print CR/LF
move.l Ememl(A3),D0 ; get end of mem
sub.l Smeml(A3),D0 ; subtract start of mem
; bsr LAB_295E ; print d0 as unsigned integer (bytes free)
; lea LAB_SMSG(PC),A0 ; point to start message
; bsr LAB_18C3 ; print null terminated string from memory
lea LAB_RSED(PC),A0 ; get pointer to value
bsr LAB_UFAC ; unpack memory (a0) into FAC1
lea LAB_1274(PC),A0 ; get warm start vector
move.l A0,Wrmjpv(A3) ; set warm start vector
bsr LAB_RND ; initialise
jmp LAB_WARM(A3) ; go do warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do format error
LAB_FOER:
moveq #$2C,D7 ; error code $2C "Format" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do address error
LAB_ADER:
moveq #$2A,D7 ; error code $2A "Address" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; do wrong dimensions error
LAB_WDER:
moveq #$28,D7 ; error code $28 "Wrong dimensions" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do undimensioned array error
LAB_UDER:
moveq #$26,D7 ; error code $26 "undimensioned array" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do undefined variable error
LAB_UVER:
; if you do want a non existant variable to return an error then leave the novar
; value at the top of this file set to zero
IF novar
moveq #$24,D7 ; error code $24 "undefined variable" error
bra.s LAB_XERR ; do error #d7, then warm start
ENDIF
; if you want a non existant variable to return a null value then set the novar
; value at the top of this file to some non zero value
IF !novar
add.l D0,D0 ; .......$ .......& ........ .......0
swap D0 ; ........ .......0 .......$ .......&
ror.b #1,D0 ; ........ .......0 .......$ &.......
lsr.w #1,D0 ; ........ .......0 0....... $&......
and.b #$C0,D0 ; mask the type bits
move.b D0,Dtypef(A3) ; save the data type
moveq #0,D0 ; clear d0 and set the zero flag
movea.l D0,A0 ; return a null address
rts
ENDIF
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do loop without do error
LAB_LDER:
moveq #$22,D7 ; error code $22 "LOOP without DO" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
*
; do undefined function error
LAB_UFER:
moveq #$20,D7 ; error code $20 "Undefined function" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do can't continue error
LAB_CCER:
moveq #$1E,D7 ; error code $1E "Can't continue" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do string too complex error
LAB_SCER:
moveq #$1C,D7 ; error code $1C "String too complex" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do string too long error
LAB_SLER:
moveq #$1A,D7 ; error code $1A "String too long" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do type missmatch error
LAB_TMER:
moveq #$18,D7 ; error code $18 "Type mismatch" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do illegal direct error
LAB_IDER:
moveq #$16,D7 ; error code $16 "Illegal direct" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do divide by zero error
LAB_DZER:
moveq #$14,D7 ; error code $14 "Divide by zero" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do double dimension error
LAB_DDER:
moveq #$12,D7 ; error code $12 "Double dimension" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do array bounds error
LAB_ABER:
moveq #$10,D7 ; error code $10 "Array bounds" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do undefined satement error
LAB_USER:
moveq #$0E,D7 ; error code $0E "Undefined statement" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do out of memory error
LAB_OMER:
moveq #$0C,D7 ; error code $0C "Out of memory" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do overflow error
LAB_OFER:
moveq #$0A,D7 ; error code $0A "Overflow" error
bra.s LAB_XERR ; do error #d7, then warm start
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; *
;*
; do function call error