Kernel version 0.9 : CR/LF migration (Telnet)

This commit is contained in:
Rémy GIBERT 2017-03-01 11:31:19 +01:00
parent fceb9a7c08
commit 0bbbeac390
7 changed files with 26 additions and 14 deletions

Binary file not shown.

Binary file not shown.

View File

@ -9,7 +9,9 @@ SET PATH=${PATH};/A2OSX.DEV/BIN/
SET PS1='$PWD'
# Main Screen
INSDRV CONSOLE.DRV
ECHO toto
STARTPROC GETTY CON ${A2OSX}SBIN/LOGIN
ECHO jojo
# Serial Login
#INSDRV SSC.DRV 9600,N,8,1,X
#INSDRV SSC.I.DRV 9600,N,8,1,X

View File

@ -122,6 +122,8 @@ CS.RUN >LDYA L.MSG0
bcs .9
.7 lda #13
>SYSCALL PutCA
lda #10
>SYSCALL PutCA
inc DEV.ID
@ -148,7 +150,7 @@ GetDevStatus ldx #DEVMGR.STATUS
GetDevStatusJmp jmp $ffff
*--------------------------------------
CS.END
MSG0 >CSTR "ID Status Flags Name Addr. Typ/Sub IDString Version\n"
MSG0 >CSTR "ID Status Flags Name Addr. Typ/Sub IDString Version\r\n"
MSG1 >CSTR "%03d %b %b %4S $%H "
MSG2 >CSTR "$%h/$%h %16S %03d.%03d"
*--------------------------------------

View File

@ -227,6 +227,8 @@ CS.RUN >SYSCALL GetC
*--------------------------------------
CS.RUN.CR.NEXT lda #13
>SYSCALL PutCA
lda #10
>SYSCALL PutCA
CS.RUN.NEXT jsr GetNextEntry
bcs CS.RUN.LEAVE
rts

View File

@ -196,6 +196,8 @@ Cmd.Exec.PWD ldy #S.PS.hPREFIX
bcs .9
lda #13
>SYSCALL PutCA
lda #10
>SYSCALL PutCA
.9 rts
Cmd.Exec.CD1 stz UsrBuf256
@ -421,6 +423,8 @@ Cmd.Exec.TIME clc
bcs .9
lda #13
>SYSCALL PutCA
lda #10
>SYSCALL PutCA
.9 rts
*--------------------------------------
Cmd.Exec.ECHO lda ARGS
@ -432,6 +436,8 @@ Cmd.Exec.ECHO lda ARGS
.1 lda #13
>SYSCALL PutCA
lda #10
>SYSCALL PutCA
.9 rts
*--------------------------------------

View File

@ -106,12 +106,12 @@ Kernel.Move ldy #0
bne .1
.9 rts
*--------------------------------------
MSG.Init2 >CSTR "A2osX[Stage2]:Init\r\nInstalling KERNEL...\r\n - Global Page...\r\n"
MSG.D000BNK1 >CSTR " - $D000 Bank1...\r\n"
MSG.D000BNK2 >CSTR " - $D000 Bank2...\r\n"
MSG.E000 >CSTR " - $E000...\r\n"
MSG.HZ >CSTR "Kernel SYS Timer Set For %d0 hz Machine.\r\n"
MSG.Init2.OK >CSTR "A2osX[Stage2]:Complete.\r\n"
MSG.Init2 >CSTR "A2osX[Stage2]:Init\nInstalling KERNEL...\n - Global Page...\n"
MSG.D000BNK1 >CSTR " - $D000 Bank1...\n"
MSG.D000BNK2 >CSTR " - $D000 Bank2...\n"
MSG.E000 >CSTR " - $E000...\n"
MSG.HZ >CSTR "Kernel SYS Timer Set For %d0 hz Machine.\n"
MSG.Init2.OK >CSTR "A2osX[Stage2]:Complete.\n"
*--------------------------------------
CPU.Init >LDAXI MSG.CPU
jsr PrintCStrAX
@ -296,14 +296,14 @@ MSG.CPUTYPEH .DA /MSG.6502
.DA /MSG.65C02
.DA /MSG.65R02
.DA /MSG.65816
MSG.6502 >CSTR "6502.\r\n"
MSG.65C02 >CSTR "65C02.\r\n"
MSG.65R02 >CSTR "65R02.\r\n"
MSG.65816 >CSTR "65816.\r\n"
MSG.CPU.SPEEDOK >CSTR "%d.%02d Mhz.\r\n"
MSG.6502 >CSTR "6502.\n"
MSG.65C02 >CSTR "65C02.\n"
MSG.65R02 >CSTR "65R02.\n"
MSG.65816 >CSTR "65816.\n"
MSG.CPU.SPEEDOK >CSTR "%d.%02d Mhz.\n"
MSG.Z80 >CSTR "Detecting Z80 CPU..."
MSG.Z80.OK >CSTR "Detected In Slot %d.\r\n"
MSG.Z80.KO >CSTR "Not Detected.\r\n"
MSG.Z80.OK >CSTR "Detected In Slot %d.\n"
MSG.Z80.KO >CSTR "Not Detected.\n"
MAN
SAVE SYS/KERNEL.S.INIT2
LOAD SYS/KERNEL.S