OSGBPB
Contents
Specification
6502 | Z80 | 6809 | PDP11 | 80x86 | 32016 | ARM | 68000 | RISC-V | On entry: | On exit: |
A | A | A | R0 | AL | R1 | R0 | D0 | A0 | = function code | = &00 if supported, preserved if not supported, but see notes |
YX | HL | X | R1 | BX | =>control block | undefined, control block updated | ||||
Cy=EOF, but see notes | ||||||||||
Control block | ||||||||||
&00 | R2 | R1 | D1 | A1 | Handle | Handle or Cycle Number | ||||
&01 | R3 | R2 | D2 | A2 | Data Address | Updated Data Address | ||||
&05 | R4 | R3 | D3 | A3 | Count | Updated Count | ||||
&09 | R5 | R4 | D4 | A4 | Offset | Updated Offset | ||||
&0D |
Function summary | |||
Core functions | Extensions | ||
&01 | Write bytes using pointer | &09 | Read names from specified directory |
&02 | Write bytes to current pointer | &0A | Read names and information |
&03 | Read bytes using pointer | &0B | Read names and extended information |
&04 | Read bytes from current pointer | &0C | Read names and filetype information |
&05 | Read title and boot option | ||
&06 | Read directory name | ||
&07 | Read library name | ||
&08 | Read object names from current dir. |
On return:
- The handle is preserved, unless where indicated
- The Data address is incremented by the number of bytes transfered
- The Count is decremented by the number of bytes or objects transfered
- The Offset returns the actual PTR used incremented by the number of bytes transfered, or updated to the next object
Functions
&01 | Write bytes to open file using new pointer. |
&02 | Write bytes to open file ignoring new pointer. |
&03 | Read bytes from open file using new pointer. |
&04 | Read bytes from open file ignoring new pointer. |
| |
&05 | Read title and boot option of CSD disk into data block:
|
&06 | Read currently selected directory name into data block:
|
&07 | Read current library name into data block:
|
&08 | Read object names from current directory into data block:
|
&09 | Reads object names from directory, work/login filename, command line tail:
Reading object names:
Reading work/login filename or command line tail:
If the handle is a channel number of an open directory, reads a null-terminated list of directory entries. On platforms where the channel is passed in a register this can be a pointer to a directory name, or zero for the current directory. The function is called as for OSGBPB 8, but the updated 'Count' is the number of filenames read, which is zero when there are no more names to read. See also implementation notes. |
&0A | Read object names and information from the opened directory whose channel number is passed in the handle. If the channel is zero the current directory is scanned. On platforms where the channel is passed in a register this can be a pointer to a directory name, or zero for the current directory. This function is called as for OSGBPB 9. Each record is a whole multiple of four bytes long:
|
&0B | Read object names and extended information from the opened directory whose channel number is passed in the handle. If the channel is zero the current directory is scanned. On platforms where the channel is passed in a register this can be a pointer to a directory name, or zero for the current directory. This function is called as for OSGBPB 9. Each record is a whole multiple of four bytes long:
|
&0C | Read object names and filetype information from the opened directory whose channel number is passed in the handle. If the channel is zero the current directory is scanned. On platforms where the channel is passed in a register this can be a pointer to a directory name, or zero for the current directory. This function is called as for OSGBPB 9. Each record is a whole multiple of four bytes long:
|
Notes
Some filing systems preserve A even if they support the function.
Many filing systems do not return Carry consistently. The only consistent way of telling if the end of file has been reached is to test whether the updated number of bytes/objects is unequal to zero.
Calling from BBC BASIC
BBC BASIC makes no calls to OSGBPB.
Entry points
- BBC BASIC Entry Address: &FFD1
- 6502 Entry Address: &FFD1, vectors via &021A
- Z80 Entry Address: &FFD1, vectors via &FFD2
- 6809 Entry Address: &FFD1, vectors via &FFD2
- 80x86 Entry Address: INT &41, vectors via 0000:0104
- 32000 Entry Address: SVC &0F
- PDP-11 Entry Address: EMT 11, vector &0B
- ARM Entry Address: SWI &0C "OS_GBPB", vector &0C
- 68000 Entry Address: MOV #&0C,A0:TRAP 12
- RISC-V Entry Address: ECALL &AC000B
Implementations
CFS
Not implemented, simply returns with an RTS instruction.
The Master 128 implements &02 and &04.
ROMFS
Not implemented, simply returns with an RTS instruction.
The Master 128 implements &04.
DFS
Acorn DFS and contemporary filing systems implement functions &01 to &08 inclusive. Watford DFS implements &09 to read the work name.
In Opus EDOS and Slogger Challenger, OSGBPB 5 does not return the CSD drive number. In Opus DDOS the drive number byte includes a representation of the volume letter in bits 6..4.
In Opus/Slogger filing systems the drive identity returned by OSGBPB 6 and 7 consists of one or two characters, the first being the ASCII drive digit 0..3 and the second being the optional volume letter A..H.
ADFS
ADFS implements &01 to &08
HADFS
HADFS implements &01 to &0B.
Z80Tube
The Z80Tube Z80 emulator implements OSGBPB 9,0 to read the command line tail.
65Tube
The emulator traps implemented in 65Tube allows calls to OSGBPB with A>9 to pass additional parameters:
On entry: | On exit: | ||
XY?0 | = ignored | XY?0 | = directory cycle |
XY!1 | = address | XY!1 | = updated address |
XY!5 | = count | XY!5 | = returned count |
XY!9 | = offset | XY!9 | = updated offset |
XY!13 | =>directory name | XY!13 | = preserved |
XY!17 | =>wildcard to match | XY!17 | = preserved |
6502Em
The emulator traps implemented in Warm Silence's 6502Em implement OSGBPB 9 to read object names from the current directory, but use the control block contents differently from the standard:
On entry: | On exit: | ||
XY?0 | = count | XY?0 | = returned count |
XY!1 | = address | XY!1 | = preserved |
XY!5 | = buffer length | XY!5 | = preserved |
XY!9 | = offset | XY!9 | = updated offset |
Filing System Calls | |
---|---|
Jgharston 17:01, 6 November 2009 (UTC) Jgharston (talk) 15:56, 30 September 2016 (UTC)
Jgharston (talk) 00:03, 3 October 2016 (UTC)