-
Notifications
You must be signed in to change notification settings - Fork 4
/
+ILib.s
7746 lines (7455 loc) · 170 KB
/
+ILib.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
;---------------------------------------------------------------------
Lib_Ini 0
;---------------------------------------------------------------------
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; INITIALISATION LIBRAIRIE
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Init
Init
; - - - - - - - - - - - - -
move.w #$00FF,d0 Librairie numero 0
move.w #Ver_Number,d1
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; ROUTINES A NETTOYER
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Routines de chargement
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Int Edit_Load
Lib_Int Edit_Free
Lib_Int Mon_Load
Lib_Int Mon_Free
; Entrees dans le moniteur (5 places)
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Def Mon_Start
Lib_Def Mon_In_Editor
Lib_Def Mon_In_Program
Lib_Def Mon_MonitorChr
Lib_Def Mon_Free2
Lib_Def Mon_Free3
; Entrees dans l'editeur (15 places)
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Def Ed_Start
Lib_Def Ed_Cold 0
Lib_Def Ed_Title 1
Lib_Def Ed_End 2
Lib_Def Ed_Loop 3
Lib_Def Ed_ErrRun 4
Lib_Def Ed_CloseEditor 5
Lib_Def Ed_KillEditor 6
Lib_Def Ed_ZapFonction 7
Lib_Def Ed_ZapIn 8
Lib_Def Ed_RunDirect 9
Lib_Def Tokenise 10
Lib_Def Detok 11
Lib_Def Mon_Detok 12
Lib_Def TInst 13
Lib_Def Ed_Free1 14
Lib_Def Ed_Free2 15
Lib_Def Ed_Free3 16
Lib_Def Ed_Free1 17
Lib_Def Ed_Free2 18
; Routines dans la verification
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Int Tk_FindA
Lib_Int Tk_EditL
Lib_Int Tk_FindL
Lib_Int Tk_FindN
Lib_Int Tk_SizeL
Lib_Int Prg_RunIt
Lib_Int Prg_TestIt
Lib_Int Prg_Save
Lib_Int Prg_Load
Lib_Int Prg_New
Lib_Int Prg_NewStructure
Lib_Int Prg_DelStructure
Lib_Int Prg_AccAdr
Lib_Int Prg_DejaRunned
Lib_Int Prg_DataLoad
Lib_Int Prg_DataSave
Lib_Int Prg_DataNew
Lib_Int Prg_CptLines
Lib_Int Prg_ChgTTexte
Lib_Int Prg_SetBanks
Lib_Int Prg_ReSetBanks
Lib_Int Prg_SetBanks
Lib_Int Prg_Pull
Lib_Int ClearVar
Lib_Int PTest
Lib_Int SsTest
Lib_Int ResVNom
Lib_Int ResDir
Lib_Int ResVarBuf
Lib_Int VerDirect
Lib_Int Stack_Reserve
Lib_Int Includes_Clear
Lib_Int Includes_Adr
Lib_Int Equ_Free
; Routines internes à "+b.s"
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Int RamFast Ram Access
Lib_Int RamFast2
Lib_Int RamChip
Lib_Int RamChip2
Lib_Int RamFree
Lib_Int ResTempBuffer
Lib_Int Math_Close
Lib_Int Sys_WaitMul
Lib_Int Def_GetMessage
Lib_Int Sys_GetMessage
Lib_Int GetMessage
Lib_Int Sys_AddPath
Lib_Def Sys_GetPath Pour le compilateur!
Lib_Int Sys_UnCode
Lib_Int MemMaximum
Lib_Int MemDelBanks
Lib_Int TheEnd
Lib_Int UserReg
Lib_Int VersionN
Lib_Int BugBug
Lib_Int PreBug
Lib_Int Sys_ClearCache
Lib_Int WOption
Lib_Int ReCop
Lib_Int Lst.ChipNew Gestion des listes
Lib_Int Lst.New
Lib_Int Lst.Cree
Lib_Int Lst.DelAll
Lib_Int Lst.Del
Lib_Int Lst.Insert
Lib_Int Lst.Remove
Lib_Int Bnk.PrevProgram
Lib_Int Bnk.CurProgram
Lib_Int AskDir
Lib_Int AskDir2
; Special compilateur
; ~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Def Tokenisation Routines pour APCMP
Lib_Def Testing
Lib_Def CValRout
Lib_Def CmpInit1 Routines d'initialisation
Lib_Def CmpInit2
Lib_Def AMOSInit
Lib_Def CmpDbMode
Lib_Def CmpLineCLI
Lib_Def CmpLineSER
Lib_Def CmpPrintCLI
Lib_Def CmpPrintSER
Lib_Def CmpEffVarBuf
Lib_Def CmpLibrariesInit
Lib_Def CmpLibrariesStop
Lib_Def CmpEndRoutines
Lib_Def CmpLibClose
Lib_Def CmpClearVar
Lib_Def PlusF Routines d'operateurs
Lib_Def PlusC
Lib_Def MoinsF
Lib_Def MoinsC
Lib_Def MultE
Lib_Def MultF
Lib_Def DiviseE
Lib_Def DiviseF
Lib_Def Puissance
Lib_Def Modulo
Lib_Def Chaine_Compare
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; DEFRUN: initialisation graphique
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def DefRun1
; - - - - - - - - - - - - -
tst.w DefFlag(a5)
beq DRunX
movem.l d0-d7/a0-a6,-(sp)
; Enleve les animations
; ~~~~~~~~~~~~~~~~~~~~~
SyCall AMALClr
clr.w PAmalE(a5)
; Enleve les rainbows
; ~~~~~~~~~~~~~~~~~~~
EcCalD RainDel,-1
; Appel des routines de nettoyage
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lea Sys_DefaultRoutines(a5),a1
SyCall CallRoutines
; Enleve tous les ecrans
; ~~~~~~~~~~~~~~~~~~~~~~
move.w PI_DefEBa(a5),ColBack(a5)
moveq #0,d1
moveq #7,d2
EcCall DelAll
clr.w ScOn(a5)
clr.l ScOnAd(a5)
move.w #8,CurTab(a5) Tab par defaut
; Enleve le tempras
; ~~~~~~~~~~~~~~~~~
clr.l RasLock(a5)
Rjsr L_FreeRas
; Enleve les blocs!
; ~~~~~~~~~~~~~~~~~
EcCall CBlRaz
EcCall BlRaz
; Enleve les font-infos
; ~~~~~~~~~~~~~~~~~~~~~
EcCall FFonts
; RAZ des canaux d'animation
; ~~~~~~~~~~~~~~~~~~~~~~~~~~
lea AnCanaux(a5),a0
moveq #0,d0
DRun1: clr.b (a0)+
move.b d0,(a0)+
addq.w #1,d0
cmp.w #64,d0
bne.s DRun1
; Priority off
; ~~~~~~~~~~~~
moveq #0,d1
moveq #0,d2
SyCall SPrio
; RAZ des scrollings
; ~~~~~~~~~~~~~~~~~~
moveq #NDScrolls-1,d0
lea DScrolls(a5),a0
DRun2: move.w #$8000,(a0)
lea 12(a0),a0
dbra d0,DRun2
; Interruptions branchees
; ~~~~~~~~~~~~~~~~~~~~~~~
clr.w InterOff(a5)
move.w InterOff(a5),d1
SyCall SetSync
move.w #%0111000100000000,ActuMask(a5)
clr.w VBLDelai(a5)
clr.w VBLOCount(a5)
; Copie la palette par defaut
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~
lea PI_DefEPa(a5),a0
lea DefPal(a5),a1
moveq #31,d0
EdTr: move.w (a0)+,(a1)+
dbra d0,EdTr
; Cree l'ecran (si pas system!)
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cmp.w #-2,DefFlag(a5)
beq.s DRex0
move.w PI_DefETx(a5),d2
ext.l d2
move.w PI_DefETy(a5),d3
ext.l d3
move.w PI_DefECo(a5),d4
ext.l d4
move.w PI_DefEMo(a5),d5
move.w PI_DefECoN(a5),d6
moveq #0,d7
lea DefPal(a5),a1
EcCalD Cree,0
bne.s DRex0
move.l a0,ScOnAd(a5)
move.w #1,ScOn(a5)
move.l #EntNul,d4
move.l d4,d5
move.w PI_DefEWx(a5),d2 Si non initialise...
bne.s .Skip1
move.l d4,d2
.Skip1 move.w PI_DefEWy(a5),d3
bne.s .Skip2
move.l d4,d3
.Skip2 EcCalD AView,0
; Fait flasher la couleur 3 (si plus de 2 couleurs)
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cmp.w #1,PI_DefECo(a5)
beq.s DRex0
moveq #3,d1
moveq #46,d0
Rjsr L_Sys_GetMessage
move.l a0,a1
EcCall Flash
; Call extensions
; ~~~~~~~~~~~~~~~
Rbsr L_DefRunExtensions
; Fini
; ~~~~
DRex0 movem.l (sp)+,d0-d7/a0-a6
DRunX: rts
; - - - - - - - - - - - - -
Lib_Def DefRun2
; - - - - - - - - - - - - -
tst.w DefFlag(a5)
beq.s DRunX
clr.w DefFlag(a5)
; Limite la souris
; ~~~~~~~~~~~~~~~~
move.w T_DefWX(a5),d1
move.w T_DefWY(a5),d2
move.w PI_DefETx(a5),d3
move.w PI_DefETy(a5),d4
subq.w #1,d3
subq.w #1,d4
add.w d1,d3
add.w d2,d4
lsl.w #1,d1
lsl.w #1,d2
lsl.w #1,d3
lsl.w #1,d4
lea LimSave(a5),a0
move.w d1,(a0)+
move.w d2,(a0)+
move.w d3,(a0)+
move.w d4,(a0)+
lea T_MouXMin(a5),a0
tst.l (a0)
bne.s .Skip
move.w d1,(a0)+
move.w d2,(a0)+
move.w d3,(a0)+
move.w d4,(a0)+
.Skip move.l PI_ParaTrap+16(a5),d1 * Nombre de lignes
SyCall SBufHs
SyCall OffHs
SyCall StoreM
SyCall StoreM
SyCall AffHs
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; DEFRUNACC: semi initialisation graphique pour accessoires
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def DefRunAcc
; - - - - - - - - - - - - -
movem.l d0-d7/a0-a6,-(sp)
; Appel des routines de nettoyage
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lea Sys_DefaultRoutines(a5),a1
SyCall CallRoutines
; Enleve les animations
; ~~~~~~~~~~~~~~~~~~~~~
SyCall AMALClr
clr.w PAmalE(a5)
; RAZ des canaux d'animation
; ~~~~~~~~~~~~~~~~~~~~~~~~~~
lea AnCanaux(a5),a0
moveq #0,d0
.DRun1 clr.b (a0)+
move.b d0,(a0)+
addq.w #1,d0
cmp.w #64,d0
bne.s .DRun1
; Priority off
; ~~~~~~~~~~~~
moveq #0,d1
moveq #0,d2
SyCall SPrio
; RAZ des scrollings
; ~~~~~~~~~~~~~~~~~~
moveq #NDScrolls-1,d0
lea DScrolls(a5),a0
.DRun2 move.w #$8000,(a0)
lea 12(a0),a0
dbra d0,.DRun2
; Interruptions branchees
; ~~~~~~~~~~~~~~~~~~~~~~~
clr.w InterOff(a5)
move.w InterOff(a5),d1
SyCall SetSync
move.w #%0111000100000000,ActuMask(a5)
clr.w VBLDelai(a5)
clr.w VBLOCount(a5)
; Call extensions
; ~~~~~~~~~~~~~~~
Rbsr L_DefRunExtensions
; Sprites
; ~~~~~~~
SyCall OffHs
SyCall AffHs
move.w #1,DefFlag(a5)
movem.l (sp)+,d0-d7/a0-a6
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; INITIALISATION ECRAN DES EXTENSIONS
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def DefRunExtensions
; - - - - - - - - - - - - -
movem.l a2-a6/d2-d7,-(sp)
.DRex0 lea ExtAdr(a5),a0
moveq #26-1,d0
.DRex1 move.l 4(a0),d1
beq.s .DRex2
move.l d1,a1
movem.l a0/d0,-(sp)
jsr (a1)
movem.l (sp)+,a0/d0
.DRex2 lea 16(a0),a0
dbra d0,.DRex1
movem.l (sp)+,a2-a6/d2-d7
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Set Patch sur CHRGET
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def SetChrPatch
; - - - - - - - - - - - - -
move.w d0,Cur_ChrJump(a5)
lea _Poke(pc),a1
tst.w d0
beq.s .Norm
move.w .Mon(pc),(a1)+
lsl.w #2,d0
neg.w d0
sub.w #LB_Size+4,d0
move.w d0,(a1)+
bra.s .Clear
.Norm move.l .Chr(pc),(a1)+
.Clear Rjsr L_Sys_ClearCache
rts
.Chr move.l -LB_Size(a4,d1.w),a0
.Mon move.l 0(a4),a0
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; ENTREE DU CHRGET
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Pos_IRet
; - - - - - - - - - - - - -
dc.w _IRet-_DChr
; - - - - - - - - - - - - -
Lib_Def New_ChrGet
; - - - - - - - - - - - - - - -
_DChr move.l BasSp(a5),sp
move.l AdTokens(a5),a4
; Adresse du retour d'instructions
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lea _IRet(pc),a0
move.l a0,Prg_InsRet(a5)
; Buffer des boucles
; ~~~~~~~~~~~~~~~~~~
Rjsrt L_Stack_Reserve
; beq VerOut *** Illegal!
move.l HoLoop(a5),a3
move.l a3,PLoop(a5)
move.l a3,BasA3(a5)
move.l BaLoop(a5),MinLoop(a5)
add.l #64,MinLoop(a5)
; Ouverture des librairies mathematiques / Choix des routines dans la librarie
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bsr Open_MathLibraries
; Autres inits
; ~~~~~~~~~~~~
clr.w T_Actualise(a5)
clr.l AData(a5)
move.w #1,DefFlag(a5)
move.l Prg_Run(a5),a6
move.l a6,DProc(a5)
move.l a6,PData(a5)
; Debuggage
IFNE Debug>1
move.l VarBufL(a5),d0
cmp.l #1024*1,d0
bne.s .NoBug
Rjsr L_PreBug
.NoBug
ENDC
; Boucle du ChrGet
; ~~~~~~~~~~~~~~~~~~~~~~
move.l AdTokens(a5),a4
_NLine tst.w (a6)+
beq.s InEnd
_ILoop move.w (a6)+,d0
beq.s _NLine
_Inst move.l a6,d7
move.w 0(a4,d0.w),d1 Pointe la table de tokens
_Poke move.l -LB_Size(a4,d1.w),a0
IFNE Debug
move.l a3,Chr_Debug(a5)
movem.l d6/d7,Chr_Debug+4(a5)
ENDC
jsr (a0)
_IRet
IFNE Debug>1
move.l Chr_Debug(a5),a0
movem.l Chr_Debug+4(a5),d0/d1
cmp.l a0,a3 Test valide PLOOP
bne.s .Bug
cmp.l d0,d6 Test sauvegarde D6/D7
bne.s .Bug
cmp.l d1,d7
beq.s .Skip
.Bug Rjsr L_BugBug
Rjsr L_InMonitor
ENDC
IFNE Debug
move.l Chr_Debug(a5),a0
movem.l Chr_Debug+4(a5),d0/d1
cmp.l a0,a3 Test valide PLOOP
bne.s .Bug1
cmp.l d0,d6 Test sauvegarde D6/D7
bne.s .Bug1
cmp.l d1,d7
beq.s .Skip
.Bug1 Rjsr L_InMonitor
ENDC
.Skip
move.w (a6)+,d0
bne.s _Inst
tst.w (a6)+
bne.s _ILoop
bra.s InEnd
; - - - - - - - - - - - - -
Lib_Par InEnd
; - - - - - - - - - - - - -
InEnd moveq #NbEnd,d0
bra RunErr
; Librairies ouvertes par le ChrGet
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MathName dc.b "mathtrans.library",0
DFloatName dc.b "mathieeedoubbas.library",0
DMathName dc.b "mathieeedoubtrans.library",0
even
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; EXTENSION INSTRUCTION CALL
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Par InExtCall
; - - - - - - - - - - - - -
move.b (a6)+,d1 # Extension
move.b (a6)+,d0 Nombre de params
bpl.s .Old NOUVELLE extension?
; Nouvelle extension AMOSPro II
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ext.w d1
lsl.w #2,d1
move.l AdTokens(a5,d1.w),a0
move.w (a6)+,d0
move.w 0(a0,d0.w),d1 # du jump dans la librarie
move.w 2(a0,d0.w),d2 Nombre de parametres
move.l -LB_Size(a0,d1.w),a0 Adresse du saut
jmp (a0) On y va!
; Ancienne extension
; ~~~~~~~~~~~~~~~~~~~~~~~~
.Old move.w (a6)+,d2
ext.w d1
lsl.w #2,d1
move.l AdTokens(a5,d1.w),a0
add.w 0(a0,d2.w),a0
ext.w d0
beq.s .Skip
move.l a0,-(sp)
move.w d0,-(sp)
.Loop bsr New_Evalue
cmp.b #1,d2
bne.s .Ent
Rjsrt L_FlToInt1
.Ent move.l d3,-(a3)
addq.l #2,a6
subq.w #1,(sp)
bne.s .Loop
subq.l #2,a6
addq.l #2,sp
move.l (sp)+,a0
.Skip movem.l d6-d7,ErrorSave(a5)
move.b #1,ErrorRegs(a5)
jsr (a0)
movem.l ErrorSave(a5),d6-d7
clr.b ErrorRegs(a5)
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; EXTENSION FUNCTION CALL
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def FnExtCall
; - - - - - - - - - - - - -
move.b (a6)+,d1
move.b (a6)+,d0
bpl.s .Old NOUVELLE extension?
; Nouvelle extension AMOSPro II
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ext.w d1
lsl.w #2,d1
move.l AdTokens(a5,d1.w),a0
move.w (a6)+,d0
move.w 0(a0,d0.w),d1 # du jump dans la librarie
move.w 2(a0,d0.w),d2 Nombre de parametres
move.l -LB_Size-4(a0,d1.w),a0 Adresse du saut
jmp (a0) On y va!
; Ancienne extension
; ~~~~~~~~~~~~~~~~~~~~~~~~
.Old move.w (a6)+,d2
ext.w d1
lsl.w #2,d1
move.l AdTokens(a5,d1.w),a0
add.w 2(a0,d2.w),a0
ext.w d0
beq.s .Skip
move.l a0,-(sp)
move.w d0,-(sp)
.Loop bsr Fn_New_Evalue
cmp.b #1,d2
bne.s .Ent
Rjsrt L_FlToInt1
.Ent move.l d3,-(a3)
subq.w #1,(sp)
bne.s .Loop
addq.l #2,sp
move.l (sp)+,a0
.Skip movem.l d6-d7,ErrorSave(a5)
move.b #1,ErrorRegs(a5)
jsr (a0)
movem.l ErrorSave(a5),d6-d7
clr.b ErrorRegs(a5)
rts
; Ouverture / Echange des routines mathemetiques
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; - - - - - - - - - - - - -
Lib_Def Open_MathLibraries
; - - - - - - - - - - - - -
Open_MathLibraries
move.l a6,-(sp)
move.l #$c90fd942,ValPi(a5) Simple precision
move.l #$b4000048,Val180(a5)
move.l #$04040404,Long_Var(a5)
move.l $4.w,a6
btst #1,MathFlags(a5) Simple precision
beq.s .M1
tst.l MathBase(a5)
bne.s .M1
moveq #0,d0
lea MathName(pc),a1
jsr _LVOOpenLibrary(a6)
move.l d0,MathBase(a5)
beq ErrMLibs
.M1 tst.b MathFlags(a5) Double precicion
bpl.s .M3
move.l #$40668000,Val180(a5)
move.l #$00000000,Val180+4(a5)
move.l #$400921fb,ValPi(a5)
move.l #$54442eea,ValPi+4(a5)
move.l #$04080404,Long_Var(a5)
tst.l DFloatBase(a5)
bne.s .M2
moveq #0,d0
lea DFloatName(pc),a1
jsr _LVOOpenLibrary(a6)
move.l d0,DFloatBase(a5)
beq ErrMLibs
.M2 tst.l DMathBase(a5)
bne.s .M3
moveq #0,d0
lea DMathName(pc),a1
jsr _LVOOpenLibrary(a6)
move.l d0,DMathBase(a5)
beq ErrMLibs
.M3 bsr Lib_FloatSwap Echange les routines float
Rjsr L_Sys_ClearCache
move.l (sp)+,a6
rts
; Echange des routines float dans la librarie
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_FloatSwap
movem.l a2/d2,-(sp)
lea AdTokens(a5),a2
moveq #27-1,d2
.Loop tst.l (a2)
beq.s .MSkip
move.l (a2),a1
tst.w LB_FFloatSwap(a1)
beq.s .MSkip
tst.b MathFlags(a5)
bmi.s .MDble
btst #LBF_DFloat,LB_Flags(a4)
bne.s .MSwap
beq.s .MSkip
.MDble btst #LBF_DFloat,LB_Flags(a4)
bne.s .MSkip
.MSwap bsr Lib_FSwap
.MSkip addq.l #4,a2
dbra d2,.Loop
movem.l (sp)+,a2/d2
rts
; Routine d'echange
; ~~~~~~~~~~~~~~~~~
Lib_FSwap
bchg #LBF_DFloat,LB_Flags(a4)
move.w LB_DFloatSwap(a1),d0
lsl.w #2,d0
neg.w d0
lea -LB_Size-4(a1,d0.w),a0
move.w LB_FFloatSwap(a1),d1
sub.w LB_DFloatSwap(a1),d1
ext.l d1
lsr.l #1,d1
subq.w #1,d1
bmi.s .Skip
.Loop move.l -4(a0),d0
move.l -8(a0),-4(a0)
move.l d0,-8(a0)
lea -8(a0),a0
dbra d1,.Loop
.Skip rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; INTERPRETEUR SEUL: recuperation des parametres...
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Parameters
; - - - - - - - - - - - - -
Par dc.w Ent_0-Par 0>>> Entier normal
dc.w Ent_1-Par 1
dc.w Ent_2-Par 2
dc.w Ent_3-Par 3
dc.w Ent_4-Par 4
dc.w Ent_N-Par 5
dc.w Flt_0-Par 6>>> Float normal
dc.w Flt_1-Par 7
dc.w Flt_2-Par 8
dc.w Flt_N-Par 9
dc.w Flt_N-Par 10
dc.w Flt_N-Par 11
dc.w IVar_0-Par 12>> Variable reservee
dc.w IVar_1-Par 13
dc.w IVar_2-Par 14
dc.w IVar_3-Par 15
dc.w IVar_4-Par 16
dc.w IVar_N-Par 17
dc.w Par_Angle-Par 18>> Fonction angle
dc.w Par_Math-Par 19>> Fonction math
; Si extensions (D2= nombre de params)
dc.w Ent_0-Par 0>>> Entier normal
dc.w Ent_1-Par 1
dc.w Ent_2-Par 2
dc.w Ent_3-Par 3
dc.w Ent_4-Par 4
dc.w EEnt_N-Par 5
dc.w Flt_0-Par 6>>> Float normal
dc.w Flt_1-Par 7
dc.w Flt_2-Par 8
dc.w EFlt_N-Par 9
dc.w EFlt_N-Par 10
dc.w EFlt_N-Par 11
dc.w IVar_0-Par 12>> Variable reservee
dc.w IVar_1-Par 13
dc.w IVar_2-Par 14
dc.w IVar_3-Par 15
dc.w IVar_4-Par 16
dc.w EIVar_N-Par 17
dc.w Par_Angle-Par 18>> Fonction angle
dc.w Par_Math-Par 19>> Fonction math
; Variable reserve en instruction, 1 param
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EIVar_N
bsr EFEnt_N
bra.s IVar
IVar_N bsr FEnt_N
bra.s IVar
IVar_4 bsr.s FEnt_4
bra.s IVar
IVar_3 bsr.s FEnt_3
bra.s IVar
IVar_2 bsr.s FEnt_2
bra.s IVar
IVar_1 bsr.s FEnt_1
IVar move.l d3,-(a3)
IVar_0 bsr Fn_New_Evalue Recolte du parametre a affecter
cmp.b #1,d2
beq.s .Ent
rts
.Ent Rjmpt L_FlToInt1
; QUATRE parametres ENTIER / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FEnt_4 addq.l #2,a6
Ent_4 bsr New_Evalue
cmp.b #1,d2
bne.s .Ent
Rjsrt L_FlToInt1
.Ent move.l d3,-(a3)
; TROIS parametres ENTIER / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FEnt_3 addq.l #2,a6
Ent_3 bsr New_Evalue
cmp.b #1,d2
bne.s .Ent
Rjsrt L_FlToInt1
.Ent move.l d3,-(a3)
; DEUX parametres ENTIER / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FEnt_2 addq.l #2,a6
Ent_2 bsr New_Evalue
cmp.b #1,d2
bne.s .Ent
Rjsrt L_FlToInt1
.Ent move.l d3,-(a3)
; UN parametre ENTIER / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FEnt_1 addq.l #2,a6
Ent_1 bsr New_Evalue
cmp.b #1,d2
beq.s Ent
Ent_0 rts
Ent Rjmpt L_FlToInt1
; Fonction ANGLE, toujours float, appel FAngle
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Par_Angle
bsr Fn_New_Evalue
tst.b d2
bne.s .Flaot
Rjsrt L_IntToFl1
.Flaot Rjmpt L_FFAngle
; Fonction mathematique: 1 param, branchement >entier >float
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Par_Math
addq.l #4,sp
move.w d1,-(sp)
bsr Fn_New_Evalue
move.w (sp)+,d0
tst.b d2
bne.s .Float
move.l -LB_Size-4(a4,d0.w),a0 Saute l'appel params
jmp 4(a0)
.Float move.l -LB_Size-8(a4,d0.w),a0 Pas d'appel params ici...
jmp (a0)
; N Parametres FLOAT / CHAINES
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EFFlt_N addq.l #2,a6
EFlt_N move.w d2,-(sp)
bra.s SOne
FFlt_N addq.l #2,a6
Flt_N move.w 2(a4,d0.w),-(sp)
bra.s SOne
SLoop move.l d3,-(a3)
addq.l #2,a6
SOne bsr New_Evalue
tst.b d2
bne.s SOk
Rjsrt L_IntToFl1
SOk subq.w #1,(sp)
bne.s SLoop
rtr
; DEUX parametres FLOAT / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FFlt_2 addq.l #2,a6
Flt_2 bsr New_Evalue
tst.b d2
bne.s .Ent
Rjmpt L_IntToFl1
.Ent move.l d3,-(a3)
; UN parametre FLOAT / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FFlt_1 addq.l #2,a6
Flt_1 bsr New_Evalue
tst.b d2
beq.s Flt
Flt_0 rts
Flt Rjmpt L_IntToFl1
; N parametres ENTIERS / CHAINE
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EFEnt_N addq.l #2,a6
EEnt_N move.w d2,-(sp)
bra.s _POne
FEnt_N addq.l #2,a6
Ent_N move.w 2(a4,d0.w),-(sp)
bra.s _POne
_PLoop move.l d3,-(a3)
addq.l #2,a6
_POne bsr New_Evalue
cmp.b #1,d2
bne.s _POk
Rjsrt L_FlToInt1
_POk subq.w #1,(sp)
bne.s _PLoop
rtr
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; TEST INTER SANS SAUT
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Test_PaSaut
Test_PaSaut
; - - - - - - - - - - - - -
movem.l d0-d7/a0-a6,-(sp)
bset #Bit_PaSaut,Test_Flags(a5)
bsr.s Test_Normal
bclr #Bit_PaSaut,Test_Flags(a5)
movem.l (sp)+,d0-d7/a0-a6
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; TEST NORMAL
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Test_Normal
Test_Normal
; - - - - - - - - - - - - -
tst.b T_Actualise(a5)
bmi.s Test_Force
rts
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; TEST FORCE
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Lib_Def Test_Force
Test_Force
; - - - - - - - - - - - - -
move.w ActuMask(a5),d4
; Inhibition par un autre AMOS?
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SyCall Test_Cyclique
; Les dialogues???
; ~~~~~~~~~~~~~~~~
move.l Cur_Dialogs(a5),a0 Un dialogue?
tst.l (a0)
beq.s .NoDia
Rjsr L_Dia_AutoTest
beq.s .NoDia
add.w #IDia_Errors,d0
Rbra L_Error
.NoDia
; Les menus???
; ~~~~~~~~~~~~
btst #BitMenu,d4 Menus en route?
beq.s Tst0
tst.l MnBase(a5) Un menu defini?
beq.s Tst0
tst.w MnProc(a5) Pas dans une procedure menu
bne.s Tst0
tst.l T_ClLast(a5) Une touche?
beq.s Tst0a
tst.w Direct(a5) Pas en mode direct
bne.s Tst0a
Rjsr L_MenuKeyExplore
Tst0a btst #10,$dff016 Afficher le menu?
bne.s Tst0
Rjsr L_MnGere
bne RunErr
; Autres choses???
; ~~~~~~~~~~~~~~~~
Tst0 move.w T_Actualise(a5),d3
bclr #BitControl,d3
bne.s Tst00
and.w d4,d3
beq TstX1
bra.s Tst1
; CONTROLE-C?
; ~~~~~~~~~~~
Tst00 tst.l Mon_Base(a5) Retour au moniteur?
bne.s IStop
btst #BitControl,d4 Break autorise?
beq.s Tst01
IStop move.w d3,T_Actualise(a5)
moveq #9,d0
bra RunErr
Tst01 move.w d3,T_Actualise(a5)
Rjsr L_OnBreakGo
bra.s Tst1a
; Branchement automatique aux menus?
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tst1 bclr #BitJump,d3
beq.s Tst1a
Rjsr L_GoMenu
; Actualisation des ecrans/animations
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tst1a move.w T_VblCount+2(a5),d0
sub.w VBLOCount(a5),d0
cmp.w VBLDelai(a5),d0
bcs TstX1
move.w T_VblCount+2(a5),VBLOCount(a5)
; Bobs?
bclr #BitBobs,d3
beq.s Tst2
SyCall EffBob
SyCall ActBob
SyCall AffBob
EcCall SwapScS
; Hard Sprites?
Tst2: bclr #BitSprites,d3
beq.s Tst3
SyCall ActHs
SyCall AffHs
; Extensions?
Tst3: lsr.b #1,d3
beq.s Tst4
lea ExtTests(a5),a1