collapseos/doc/blockdev.md

64 lines
2.1 KiB
Markdown
Raw Normal View History

2019-04-17 00:37:29 +10:00
# Using block devices
The `blockdev.asm` part manage what we call "block devices", an abstraction over
2019-10-05 02:05:05 +10:00
something that we can read a byte to, write a byte to, optionally at arbitrary
offsets.
2019-04-17 00:37:29 +10:00
A Collapse OS system can define up to `0xff` devices. Those definitions are made
in the glue code, so they are static.
Definition of block devices happen at include time. It would look like:
[...]
BLOCKDEV_COUNT .equ 1
#include "blockdev.asm"
; List of devices
.dw sdcGetB, sdcPutB
2019-04-17 00:37:29 +10:00
[...]
That tells `blockdev` that we're going to set up one device, that its GetB and
PutB are the ones defined by `sdc.asm`.
2019-04-17 00:37:29 +10:00
2019-10-05 02:05:05 +10:00
If your block device is read-only or write-only, use dummy routines. `unsetZ`
2019-10-05 03:52:14 +10:00
is a good choice since it will return with the `Z` flag unset, indicating an
2019-10-05 02:05:05 +10:00
error (dummy methods aren't supposed to be called).
Each defined block device, in addition to its routine definition, holds a
seek pointer. This seek pointer is used in shell commands described below.
2019-04-17 00:37:29 +10:00
## Routine definitions
Parts that implement GetB and PutB do so in a loosely-coupled manner, but
2019-04-17 00:37:29 +10:00
they should try to adhere to the convention, that is:
**GetB**: Get the byte at position specified by `HL`. If it supports 32-bit
2019-10-05 02:05:05 +10:00
addressing, `DE` contains the high-order bytes. Return the result in
2019-10-05 03:52:14 +10:00
`A`. If there's an error (for example, address out of range), unset
`Z`. This routine is not expected to block. We expect the result to be
2019-10-05 02:05:05 +10:00
immediate.
2019-04-17 00:37:29 +10:00
**PutB**: The opposite of GetB. Write the character in `A` at specified
2019-10-05 03:52:14 +10:00
position. `Z` unset on error.
2019-10-05 02:05:05 +10:00
2019-04-17 00:37:29 +10:00
## Shell usage
`apps/basic/blk.asm` supplies 4 shell commands that you can add to your shell.
See "Optional Modules/blk" in [the shell doc](../apps/basic/README.md).
2019-10-05 02:05:05 +10:00
2019-04-17 00:37:29 +10:00
### Example
Let's try an example: You glue yourself a Collapse OS with a mmap starting at
`0xe000` as your 4th device (like it is in the shell emulator). Here's what you
2019-04-17 00:37:29 +10:00
could do to copy memory around:
> m=0xe000
2019-12-13 03:17:10 +11:00
> while m<0xe004 getc:poke m a:m=m+1
2019-04-17 00:37:29 +10:00
[enter "abcd"]
> bsel 3
2019-12-13 03:17:10 +11:00
> i=0
> while i<4 getb:puth a:i=i+1
61626364> bseek 2
> getb:puth a
63> getb:puth a
64>