Skip to content
Snippets Groups Projects
Commit 804d4703 authored by Jakob Kirsch's avatar Jakob Kirsch
Browse files

hotfix

parent 2601f738
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ bootOS commands:
It also allows to copy the last executed
program just press Enter when the '<' prompt
appears and type the new name.
cs Change the current section. Enter a section between 00 and ff behind the @.
# Change the current section. Enter a section between 00 and ff behind the #.
other commands:
......@@ -144,7 +144,6 @@ other commands:
push Copy a program to 0xa000 from disk \
pull Copy a program to disk from 0xa000 / used for copying between disks and sections
clear Clear the screen.
pullcp Copies the pull command to 0x7c00 so you can copy it with the edit command.
pullinst Does the same like pullcp and disk in one command.
For example: (Character + is Enter key)
......
......@@ -36,7 +36,7 @@ start:
mov si,int_0x20 ; SI now points to int_0x20
mov di,0x0020*4 ; Address of service for int 0x20
mov cl,7
mov cl,8
.load_vec:
movsw ; Copy IP address
stosw ; Copy CS address
......@@ -55,7 +55,7 @@ restart:
pop ss
mov sp,stack ; Restart stack
int 0xa0
int 0x27
mov al,'>' ; Command prompt
int int_input_line ; Input line
......@@ -369,7 +369,7 @@ os2_: mov al, dl
input_key:
mov ah,0x00
int 0x16
int 0xa1
int 0x27
;
; Screen output of character contained in al
; Expands 0x0d (CR) into 0x0a 0x0d (LF CR)
......@@ -475,7 +475,7 @@ commands:
dw edit_command
db 2,"rm"
dw rm_command
db 2,"cs"
db 1,"#"
dw cs_command
db 0
......@@ -495,6 +495,7 @@ int_0x20:
dw save_file ; int 0x24
dw delete_file ; int 0x25
dw input_line ; int 0x26
dw irt
error_message:
db 0x13
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment