From d80736ab6e8e3cad2f1a30c6eaba2d6883dbe967 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 26 Aug 2017 20:31:40 +0200 Subject: Remove AmForth --- amforth-6.5/avr8/words/d-plus.asm | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 amforth-6.5/avr8/words/d-plus.asm (limited to 'amforth-6.5/avr8/words/d-plus.asm') diff --git a/amforth-6.5/avr8/words/d-plus.asm b/amforth-6.5/avr8/words/d-plus.asm deleted file mode 100644 index 60286dd..0000000 --- a/amforth-6.5/avr8/words/d-plus.asm +++ /dev/null @@ -1,27 +0,0 @@ -; ( d1 d2 -- d3) -; Arithmetics -; add 2 double cell values -VE_DPLUS: - .dw $ff02 - .db "d+" - .dw VE_HEAD - .set VE_HEAD = VE_DPLUS -XT_DPLUS: - .dw PFA_DPLUS -PFA_DPLUS: - ld temp2, Y+ - ld temp3, Y+ - - ld temp4, Y+ - ld temp5, Y+ - ld temp6, Y+ - ld temp7, Y+ - - add temp2, temp6 - adc temp3, temp7 - adc tosl, temp4 - adc tosh, temp5 - - st -Y, temp3 - st -Y, temp2 - jmp_ DO_NEXT -- cgit v1.2.3