OSDN Git Service

Update FF_SPECS.f
[fast-forth/master.git] / forthMSP430FR_SD_ACCEPT.asm
index 1ab2bbe..24091b7 100644 (file)
@@ -1,23 +1,5 @@
 ; -*- coding: utf-8 -*-
-; http://patorjk.com/software/taag/#p=display&f=Banner&t=Fast Forth
-
-; Fast Forth For Texas Instrument MSP430FRxxxx FRAM devices
-; Copyright (C) <2017>  <J.M. THOORENS>
-;
-; This program is free software: you can redistribute it and/or modify
-; it under the terms of the GNU General Public License as published by
-; the Free Software Foundation, either version 3 of the License, or
-; (at your option) any later version.
-;
-; This program is distributed in the hope that it will be useful,
-; but WITHOUT ANY WARRANTY; without even the implied warranty of
-; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-; GNU General Public License for more details.
 ;
-; You should have received a copy of the GNU General Public License
-; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-
 ;Z SD_ACCEPT  addr addr len -- addr' len'  get line to interpret from a SD Card file
 ; no interrupt allowed
 ; defered word ACCEPT is redirected here by the word LOAD"
@@ -30,7 +12,6 @@
 
 ; used variables : BufferPtr, BufferLen
 
-
 ; ----------------------------------;
 ;    FORTHWORD "SD_ACCEPT"          ; CIB CIB CPL -- CIB len
 ; ----------------------------------;
@@ -41,7 +22,7 @@ SD_ACCEPT                           ; sequentially move from SD_BUF to SDIB (PAD
 ; ----------------------------------;
 StartNewLine                        ; -- CIB CIB CPL
 ; ----------------------------------;
-    MOV &CurrentHdl,T               ; prepare a link for the next LOADed file...
+    MOV &CurrentHdl,T               ; prepare a link for the next LOADed file, if any...
     MOV &BufferPtr,HDLW_BUFofst(T)  ; ...see usage : GetFreeHandle(CheckCaseOfLoadFileToken)
 ; ----------------------------------;
     MOV     @PSP+,W                 ; -- CIB CPL        W=dst_ptr
@@ -56,34 +37,35 @@ SDA_InitSrcAddr                     ; <== SDA_GetFileNextSector
 ; ----------------------------------;
 SDA_YEMIT_RET                       ;
 ; ----------------------------------;
-    FORTHtoASM                      ;
+    .word   $+2                     ;
     SUB     #2,IP                   ; 1                 restore YEMIT return
 ; ----------------------------------;
 SDA_ComputeChar                     ; -- CIB cnt
 ; ----------------------------------;
     CMP     T,S                     ; 1 src_ptr >= src_len ?
-    JHS     SDA_GetFileNextSector   ; 2 yes
+    J     SDA_GetFileNextSector   ; 2 yes
     MOV.B   SD_BUF(S),Y             ; 3 Y = char
     ADD     #1,S                    ; 1 increment input BufferPtr
     CMP.B   #32,Y                   ; 2 ascii printable char ?
-    JHS     SDA_MoveChar            ; 2 yes
+    J     SDA_MoveChar            ; 2 yes
     CMP.B   #10,Y                   ; 2 control char = 'LF' ?
     JNZ     SDA_ComputeChar         ; 2 no
 ; ----------------------------------;
 SDA_EndOfLine                       ; -- org cnt
 ; ----------------------------------;
-    MOV     S,&BufferPtr            ; yes  save BufferPtr for next line
     MOV     @RSP+,IP                ;
-    MOV     @IP+,PC                 ; ===> unique output
+    MOV     S,&BufferPtr            ; yes  save BufferPtr for next line
+    MOV     #32,S                   ; S = BL
+    JMP     ACCEPT_EOL              ; ==> output            
 ; ----------------------------------;
 SDA_MoveChar                        ;
 ; ----------------------------------;
     CMP     X,TOS                   ; 1 cnt = dst_len ?
-    JZ      YEMIT1                  ; 2 yes, don't move char to dst
+    JZ      YEMIT                   ; 2 yes, don't move char to dst
     MOV.B   Y,0(W)                  ; 3 move char to dst
     ADD     #1,W                    ; 1 increment dst addr
     ADD     #1,TOS                  ; 1 increment count of moved chars
-    JMP     YEMIT1                  ; 9/6~ send echo to terminal if ECHO, do nothing if NOECHO
+    JMP     YEMIT                   ; 9/6~ send echo to terminal if ECHO, do nothing if NOECHO
 ; ----------------------------------; 29/26~ char loop, add 14~ for readsectorW ==> 43/40~ ==> 186/200 kbytes/s @ 8MHz
 SDA_GetFileNextSector               ; CIB cnt --
 ; ----------------------------------;
@@ -91,6 +73,4 @@ SDA_GetFileNextSector               ; CIB cnt --
     CALL    #Read_File              ; that resets BufferPtr
     POPM    #2,W                    ; restore dst_ptr, dst_len
     JMP     SDA_InitSrcAddr         ; loopback to end the line
-; ----------------------------------;
-
-
+; ----------------------------------;
\ No newline at end of file