FB (FileBrowser) v2.0+ is a standalone version of the filebrowser(FB) used in JaffyDOS v1.3, now supporting over 3200 directory entries.
CRSR UP = Up one position.
CRSR DOWN = Down one position.
CRSR LEFT = Up 10 positions.
CRSR RIGHT = Down 10 positions.
F1 = Go to First entry in the list.
F2 = Refresh.
F3 = Go to Last entry in the list.
F7 = Quit.
RETURN = Load & Run / Enter dir / Mount image or swaplist.
INST/DEL = Exit dir / Unmount image.
Option below is for advanced users only.
Colors can be customized by modifying values in the beginning of the code. Unfortunately it is not an userfriendly operation, but I thought I’d mention it for those who want to change them. You need to launch your favourite HEX-editor to do the changes.
$080e 0xA9,0x9A lda #$9A ;Diskname (PETSCII code)
$0810 0x8D,0x72,0x08 sta $0872
$0813 0xA9,0x0E lda #$0E ;Selection row (COLOR code $00-$0F)
$0815 0x8D,0x26,0x09 sta $0926
$0818 0xA9,0x0E lda #$0E ;Charcolor (COLOR code $00-$0F)
$081a 0x8D,0x86,0x02 sta $0286
Adresses above are relative to $0801 as basic startadress (excluding the two bytes for loadingaddress).
Color lookup table for COLOR and PETSCII values.
COLOR PETSCII
Black $00 $90
White $01 $05
Red $02 $1C
Cyan $03 $9F
Purple $04 $9C
Green $05 $1E
Blue $06 $1F
Yellow $07 $9E
Orange $08 $81
Brown $09 $95
Pink $0A $96
Dark Grey $0B $97
Grey $0C $98
Lt.Green $0D $99
Lt.Blue $0E $9A
Lt.Grey $0F $9B
Comments