-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavrforth.f
2220 lines (1809 loc) · 29.2 KB
/
avrforth.f
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
( avrforth )
( daniel j kruszyna )
( configuration )
include config.f
( register defines )
( z )
1f constant zh
1e constant zl
1e constant zz
( y : parameter stack pointer )
1d constant yh
1c constant yl
1c constant yy
( x )
1b constant xh
1a constant xl
1a constant xx
( top of stack register )
19 constant tosh
18 constant tosl
18 constant tos
( for assembler macros )
14 constant as
( temp registers )
13 constant temp3
12 constant temp2
11 constant temp1
10 constant temp0
( zero register )
0f constant zeroh
0e constant zerol
0e constant zero
int_stack [if]
( interrupt temp )
07 constant inth
06 constant intl
[then]
( temp for shifting z )
04 constant ztemp
( task pointer )
03 constant meh
02 constant mel
02 constant me
( for lpm and multiplies )
01 constant r1
00 constant r0
( strings )
( str = a n )
: $! ( str a -- ) over over ! cell+ swap cmove ;
: $+! ( str a -- ) dup @ >r over over +! cell+ r> + swap cmove ;
: $@ ( a -- str ) dup cell+ swap @ ;
( device description )
s" asm/" pad $!
device pad $+!
s" .f" pad $+!
pad $@ included
pagesize 1 - invert constant pagemask
( assembler )
include asm/avr.f
[ifdef] rampz
( shift z left )
: szl,
ztemp clr,
zl lsl,
zh rol,
ztemp rol,
rampz ztemp store ;
( shift z right )
: szr,
ztemp rampz fetch
ztemp lsr,
zh ror,
zl ror, ;
( load program memory )
: lpm elpm, ;
: lpmz elpmz, ;
: lpmz+ elpmz+, ;
[else]
( shift z left )
: szl,
zl lsl,
zh rol, ;
( shift z right )
: szr,
zh lsr,
zl ror, ;
( load program memory )
: lpm lpm, ;
: lpmz lpmz, ;
: lpmz+ lpmz+, ;
[then]
( dictionary links )
: istring ( a n -- )
dup 1 and >r
2/ 0 ?do
dup c@ 00ff and over 1+ c@ 00ff and 8 << or i, 2 +
loop
r> if
c@ 00ff and i,
else
0 i,
then ;
variable link 0 link !
: link, ( a n -- )
link @ i,
ihere 1- link !
istring ;
variable mlink 0 mlink !
: mlink, ( a n -- )
mlink @ i,
ihere 1- mlink !
istring ;
( nrww flash section )
( flash writing words and isrs go here )
variable idp' flashend 01ff - idp' !
: idpx idp @ idp' @ idp ! idp' ! ;
( ram interrupt vector )
: ramvector ( a vec -- )
vector
zl push,
zl sreg fetch
zl push,
zh push,
zl over 0 + fetch
zh swap 1 + fetch
icall,
zh pop,
zl pop,
sreg zl store
zl pop,
reti, ;
( macros )
: dup, ( x -- x x )
tosh st-y,
tosl st-y, ;
: drop, ( x -- )
tosl ldy+,
tosh ldy+, ;
: 1-, ( x1 -- x2 )
tos 1 sbiw, ;
: 1+, ( x1 -- x2 )
tos 1 adiw, ;
: 2*, ( x1 -- x2 )
tosl lsl,
tosh rol, ;
: 2/, ( x1 -- x2 )
tosh asr,
tosl ror, ;
: lit, ( -- x )
dup,
tosl over lo ldi,
tosh swap hi ldi, ;
: drop_lit, ( x1 -- x2 )
tosl over lo ldi,
tosh swap hi ldi, ;
: 2lit, ( -- x1 x2 )
swap lit, lit, ;
: +,
dup 0 40 within if
tos swap adiw,
else
negate
tosl over lo subi,
tosh swap hi sbci,
then ;
: -,
dup negate 0 40 within if
tos swap sbiw,
else
tosl over lo subi,
tosh swap hi sbci,
then ;
: andd,
tosl over lo andi,
tosh swap hi andi, ;
: orr,
tosl over lo ori,
tosh swap hi ori, ;
: invert,
tosl com,
tosh com, ;
: low,
tosh clr, ;
: high,
tosl tosh mov,
tosh clr, ;
: true,
clz, ;
: false,
sez, ;
: rdrop,
temp0 pop,
temp0 pop, ;
( stack manipulations )
s" nip" link, ( x1 x2 -- x2 )
label nip_
yy 02 adiw,
ret,
s" tuck" link, ( x1 x2 -- x2 x1 x2 )
label tuck_
temp0 ldy+,
temp1 ldy+,
tosh st-y,
tosl st-y,
temp1 st-y,
temp0 st-y,
ret,
idpx
s" over" link, ( x1 x2 -- x1 x2 x1 )
label over_
dup,
tosl 02 lddy,
tosh 03 lddy,
ret,
idpx
s" rot" link, ( x1 x2 x3 -- x2 x3 x1 )
label rot_
temp0 ldy+,
temp1 ldy+,
temp2 ldy+,
temp3 ldy+,
temp1 st-y,
temp0 st-y,
tosh st-y,
tosl st-y,
tos temp2 movw,
ret,
s" -rot" link, ( x1 x2 x3 -- x3 x1 x2 )
label -rot_
temp0 ldy+,
temp1 ldy+,
temp2 ldy+,
temp3 ldy+,
tosh st-y,
tosl st-y,
temp3 st-y,
temp2 st-y,
tos temp0 movw,
ret,
idpx
s" swap" link, ( x1 x2 -- x2 x1 )
label swap_
xx tos movw,
drop,
xh st-y,
xl st-y,
ret,
idpx
( logical )
s" and" link, ( x1 x2 -- x3 )
label and_
xl ldy+,
xh ldy+,
tosl xl and,
tosh xh and,
ret,
s" or" link, ( x1 x2 -- x3 )
label or_
temp0 ldy+,
temp1 ldy+,
tosl temp0 or,
tosh temp1 or,
ret,
s" ><" link, ( x1 -- x2 )
label ><_
temp0 tosl mov,
tosl tosh mov,
tosh temp0 mov,
ret,
s" xor" link, ( x1 x2 -- x3 )
label xor_
temp0 ldy+,
temp1 ldy+,
tosl temp0 eor,
tosh temp1 eor,
ret,
s" lshift" link, ( x1 u -- x2 )
label lshift_
xx tos movw,
drop,
( make z bit valid )
xx 0 sbiw,
label lshift_loop
z ~if,
tosl lsl,
tosh rol,
xx 1 sbiw,
lshift_loop jump
then,
ret,
s" rshift" link, ( x1 u -- x2 )
label rshift_
xx tos movw,
drop,
( make z bit valid)
xx 0 sbiw,
label rshift_loop
z ~if,
tosh lsr,
tosl ror,
xx 1 sbiw,
rshift_loop jump
then,
ret,
s" ones" link, ( x -- u )
label ones_
temp0 clr,
tosl 0 skip-bit-clear
temp0 inc,
tosl 1 skip-bit-clear
temp0 inc,
tosl 2 skip-bit-clear
temp0 inc,
tosl 3 skip-bit-clear
temp0 inc,
tosl 4 skip-bit-clear
temp0 inc,
tosl 5 skip-bit-clear
temp0 inc,
tosl 6 skip-bit-clear
temp0 inc,
tosl 7 skip-bit-clear
temp0 inc,
tosh 0 skip-bit-clear
temp0 inc,
tosh 1 skip-bit-clear
temp0 inc,
tosh 2 skip-bit-clear
temp0 inc,
tosh 3 skip-bit-clear
temp0 inc,
tosh 4 skip-bit-clear
temp0 inc,
tosh 5 skip-bit-clear
temp0 inc,
tosh 6 skip-bit-clear
temp0 inc,
tosh 7 skip-bit-clear
temp0 inc,
tosh clr,
tosl temp0 mov,
ret,
( ram )
s" !" link, ( x a -- )
label !_
zz tos movw,
drop,
tosl stz+,
tosh stz+,
drop,
ret,
s" c!" link, ( c ca -- )
label c!_
zz tos movw,
drop,
tosl stz+,
drop,
ret,
s" @" link, ( a -- x )
label @_
zz tos movw,
tosl ldz+,
tosh ldz+,
ret,
s" c@" link, ( ca -- c )
label c@_
zz tos movw,
tosl ldz+,
tosh clr,
ret,
s" cmove" link, ( ca1 ca2 u -- )
label cmove_
( destination )
zl ldy+,
zh ldy+,
( source )
xl ldy+,
xh ldy+,
label cmove_loop
temp0 ldx+,
temp0 stz+,
tos 01 sbiw,
cmove_loop brne,
drop,
ret,
s" cmove>" link, ( ca1 ca2 u -- )
label cmove>_
( destination )
zl ldy+,
zh ldy+,
zl tosl add,
zh tosh adc,
( source )
xl ldy+,
xh ldy+,
xl tosl add,
xh tosh adc,
label cmove>_loop
temp0 ld-x,
temp0 st-z,
tos 01 adiw,
cmove>_loop brne,
drop,
ret,
s" fill" link, ( ca u c -- )
label fill_
( count )
xl ldy+,
xh ldy+,
( address )
zl ldy+,
zh ldy+,
label fill_loop
tosl stz+,
xx 1 sbiw,
fill_loop brne,
drop,
ret,
( multitasking )
s" pause" link,
label pause_
dup,
yl push,
yh push,
zz me movw,
cli,
temp0 spl fetch
temp1 sph fetch
temp0 stz+,
temp1 stz+,
mel ldz+,
meh ldz+,
zz me movw,
temp0 ldz+,
temp1 ldz+,
spl temp0 store
sph temp1 store
yh pop,
yl pop,
sei,
drop,
ret,
s" me" link,
label me_
dup,
tos me movw,
ret,
( eeprom access )
label eeprom_wait
begin,
eecr eewe skip-bit-set
ret,
pause_ call
again,
label spm_wait
begin,
spmcsr spmen skip-bit-set
ret,
pause_ call
again,
s" ec!" link, ( c a -- )
label ec!_
eeprom_wait call
spm_wait call
eearh tosh store
eearl tosl store
drop,
eedr tosl store
intoff
eecr eemwe set-bit
eecr eewe set-bit
inton
drop,
ret,
s" e!" link, ( x a -- )
label e!_
over_ call
over_ call
ec!_ call
swap_ call
><_ call
swap_ call
1 +,
ec!_ jump
s" ec@" link, ( a -- c )
label ec@_
eeprom_wait call
eearh tosh store
eearl tosl store
eecr eere set-bit
tosl eedr fetch
tosh clr,
ret,
s" e@" link, ( a -- x )
label e@_
dup,
ec@_ call
swap_ call
1 +,
ec@_ call
><_ call
or_ jump
( return stack manipulations )
( return stack is big endian )
idpx
s" >r" link, ( x -- ) ( r: -- x )
label >r_
temp1 pop,
temp0 pop,
tosl push,
tosh push,
temp0 push,
temp1 push,
drop,
ret,
s" r>" link, ( -- x ) ( r: x -- )
label r>_
dup,
temp1 pop,
temp0 pop,
tosh pop,
tosl pop,
temp0 push,
temp1 push,
ret,
idpx
s" r@" link, ( -- x ) ( r: x -- x )
label r@_
dup,
zh sph fetch
zl spl fetch
tosh 03 lddz,
tosl 04 lddz,
ret,
\ .include "words/rpstore.asm"
\ .include "words/rpfetch.asm"
( math )
s" -" link, ( x1 x2 -- x3 )
label -_
xx tos movw,
drop,
tosl xl sub,
tosh xh sbc,
ret,
s" -!" link, ( x a -- )
label -!_
xx tos movw,
drop,
temp0 ldx+,
temp1 ldx+,
temp0 tosl sub,
temp1 tosh sbc,
temp1 st-x,
temp0 st-x,
drop,
ret,
s" +" link, ( x1 x2 -- x3 )
label +_
temp0 ldy+,
temp1 ldy+,
tosl temp0 add,
tosh temp1 adc,
ret,
s" +!" link, ( x a -- )
label +!_
xx tos movw,
drop,
temp0 ldx+,
temp1 ldx+,
temp0 tosl add,
temp1 tosh adc,
temp1 st-x,
temp0 st-x,
drop,
ret,
s" um*" link, ( u1 u2 -- ud )
label um*_
xl ldy+,
xh ldy+,
( tosh * xh )
tosh xh mul,
temp2 r0 movw,
( tosl * xl )
tosl xl mul,
temp0 r0 movw,
( tosh * xl )
tosh xl mul,
temp1 r0 add,
temp2 r1 adc,
temp3 zero adc,
( xh * tosl )
xh tosl mul,
temp1 r0 add,
temp2 r1 adc,
temp3 zero adc,
( put low cell on stack )
temp1 st-y,
temp0 st-y,
( high cell is above low cell on stack )
tos temp2 movw,
ret,
s" m*" link, ( n1 n2 -- d )
label m*_
( accumulator is tosh:tosl:xh:xl )
( multiplier and multiplicand are in )
( temp3:temp2 and temp1:temp0 because )
( of register restrictions with mulsu )
temp0 ldy+,
temp1 ldy+,
temp2 tos movw,
( temp3 * temp1 )
temp3 temp1 muls,
tos r0 movw,
( temp2 * temp0 )
temp2 temp0 mul,
xx r0 movw,
( temp3 * temp0 )
temp3 temp0 mulsu,
tosh zero sbc,
xh r0 add,
tosl r1 adc,
tosh zero adc,
( temp1 * temp2 )
temp1 temp2 mulsu,
tosh zero sbc,
xh r0 add,
tosl r1 adc,
tosh zero adc,
( put low cell on stack )
xh st-y,
xl st-y,
ret,
s" um/mod" link, ( ud u1 -- u2 u3 )
label um/mod_
( load dividend )
temp2 ldy+,
temp3 ldy+,
temp0 ldy+,
temp1 ldy+,
( set loop counter )
xl 10 ldi,
label um/mod_loop
( shift left, saving high bit )
xh clr,
temp0 lsl,
temp1 rol,
temp2 rol,
temp3 rol,
xh rol,
( try subtracting divisor )
temp2 tosl cp,
temp3 tosh cpc,
xh zero cpc,
c ~if,
( dividend is large enough )
( do the subtraction for real )
( and set lowest bit )
temp0 inc,
temp2 tosl sub,
temp3 tosh sbc,
then,
xl dec,
um/mod_loop brne,
( put remainder on stack )
temp3 st-y,
temp2 st-y,
( put quotient on stack )
tos temp0 movw,
ret,
s" umin" link, ( u1 u2 -- u3 )
label umin_
xx tos movw,
drop,
tosl xl cp,
tosh xh cpc,
c ~if,
tos xl movw,
then,
ret,
s" umax" link, ( u1 u2 -- u3 )
label umax_
xx tos movw,
drop,
tosl xl cp,
tosh xh cpc,
c if,
tos xl movw,
then,
ret,
( control )
s" ??" link, ( x1 x2 -- x1 x2 )
label ??_
( set condition codes from comparison )
xl 0 lddy,
xh 1 lddy,
xl tosl cp,
xh tosh cpc,
ret,
s" jump" link, ( x -- )
label jump_
zh pop,
zl pop,
zl tosl add,
zh tosh adc,
szl,
tosl lpmz+
tosh lpmz+
zz tos movw,
drop,
ijmp,
s" f@" link, ( -- x )
label f@_
( fetch condition codes )
dup,
tosl sreg fetch
tosh clr,
sreg tosl store
ret,
s" f!" link, ( x -- )
label f!_
( store condition codes )
sreg tosl store
drop,
ret,
( flash )
idpx
s" i@" link, ( a -- x )
label i@_
zz tos movw,
szl,
tosl lpmz+
tosh lpmz+
ret,
s" dospm" link, ( spmcsr x a -- )
( execute spm instruction )
label dospm_
\ spm_wait call
\ eeprom_wait call
begin,
eecr eewe skip-bit-clear
again,
begin,
spmcsr spmen skip-bit-clear
again,
( address )
zz tos movw,
szl,
drop,
( data )
r0 tos movw,
drop,
( spm timed sequence )
\ cli,
spmcsr tosl store
\ sei,
spm,
drop,
ret,
s" spmbuf" link, ( x a -- )
label spmbuf_
>r_ call
>r_ call
spmen 2^ lit,
r>_ call
r>_ call
dospm_ jump
s" spmerase" link, ( a -- )
label spmerase_
pagemask andd,
>r_ call
pgers 2^ spmen 2^ or lit,
0 lit,
r>_ call
dospm_ jump
s" spmwrite" link, ( a -- )
label spmwrite_
pagemask andd,
>r_ call
pgwrt 2^ spmen 2^ or lit,
0 lit,
r>_ call
dospm_ jump
s" spmrww" link, ( -- )
label spmrww_
rwwsre 2^ spmen 2^ or lit,
0 lit,
0 lit,
dospm_ jump
s" pageload" link, ( a -- )
label pageload_
( save complete address for later )
dup,
>r_ call
( get beginning of page )
pagemask andd,
( loop counter in words )
pagesize lit,
swap_ call
begin,
over_ call
tos 0 adiw,
drop,
z ~while,
( don't update temp buffer if it's the )
( value we're changing. each location )
( can only be written once. )
r@_ call
??_ call
drop,
z ~if,
dup,
i@_ call
over_ call
spmbuf_ call
then,
1 +,
swap_ call
1 -,
swap_ call