Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
John P. Willis
ilxi
Commits
207a762e
Commit
207a762e
authored
Aug 18, 2015
by
John P. Willis
Browse files
catch up
parent
0e3f3add
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
console.bas
console.bas
+6
-0
disk.bas
disk.bas
+3
-1
mkdisk
mkdisk
+0
-0
No files found.
console.bas
View file @
207a762e
...
...
@@ -2,6 +2,11 @@
' console.bas
'
'
' need to redesign:
' I/O port should be used to read, but block waiting on single character.
'
#include "console.bi"
#include "storage.bi"
#include "bus.bi"
...
...
@@ -189,6 +194,7 @@ sub console_cycle_serial(byval userdata as any ptr)
if console_bytes_waiting > 0 then
message_print "console_cycle_serial(): reading " & console_bytes_waiting & " bytes from console"
console_input_buffer &= input(console_bytes_waiting, console_file_number)
message_print "console_cycle_serial(): console buffer now " & console_input_buffer
end if
' mutexunlock console_mutex
...
...
disk.bas
View file @
207a762e
...
...
@@ -45,6 +45,8 @@ sub disk_init()
redim installed_disks(installed_disk_count) as installed_disk_t
message_print "disk_init(): disk adapter configured"
for i = 0 to installed_disk_count - 1
...
...
@@ -62,7 +64,7 @@ sub disk_init()
disk_build_seek_table i
message_print "disk_init(): channel " & trim(str(i)) & ": " & disk_header.track_count & " tracks, " & disk_header.sectors_per_track & " sectors/track (host file " & installed_disks(i).host_file & ")"
message_print "disk_init(): channel
#
" & trim(str(i)) & ": " & disk_header.track_count & " tracks, " & disk_header.sectors_per_track & " sectors/track (host file " & installed_disks(i).host_file & ")"
next i
...
...
mkdisk
0 → 100755
View file @
207a762e
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment