BOOKMAN Archive

Reverse Engineering Page

Last updated 2023-01-05

This page contains some general working notes + high-level progress updates on the reverse engineering process.

To do

Bookman2, Bookman3 Factory Test Mode

2023-01-04 : after dumping some of the 3XXX and 4XXX ROM cards, we discovered some common diagnostic strings within them that suggested there was an onboard BIOS independent of any of the user apps. With a bit of further probing we discovered how to trigger the Factory Test Menu on all Bookman2 and Bookman3 devices (Bookman1 diagnostic / test mode trigger not yet discovered).

  1. With the device switched off, press and hold FN + CARD keys
  2. Press the ON / OFF key to switch the reader on
  3. Release the ON / OFF key
  4. Release the other keys
  5. You should see the Factory Test Main Menu
MWD-1470 (Bookman3)
MED-1770 (Bookman2)
BDS-1590 (Bookman2)

Different device ranges will show different options and tests but generally you should see:

Credits Screen

2023-01-06 : Access a further "credits" screen when at the Factory Test Main Menu by pressing the FN (Star) + Menu keys. This will show the names of the development team:

CPU+ASIC design:
     Bob Grieb, Dave McWherter
6502 simulator software:
     Dave McWherter
BIOS design/development:
     Paul Bartholomew, Fred Bowen
Quality Assurance:
     Bob Verna

Exiting

Hardware Architecture

Found references from eBookman SDK Release 020419

// IN ebsdk_ebm_020419/sneak32/include/machine/setjmp.h LINE 51
// Jump buffer length (10)
// = 
// Registers 8 to 15 inclusive (8)
// +
// Stack Pointer (1)
// +
// Program Counter (1)

#ifdef __sneak8__
/* R8-R15, SP, PC */
#define _JBLEN 10
#endif
// IN ebsdk_ebm_020419/sneak32/include/machine/ieeefp.h LINE 58
// Sneak8 was LE
// Used small sized bitfields for floating point types
#ifdef __sneak8__
#define __SMALL_BITFIELDS
#define __IEEE_LITTLE_ENDIAN
#endif
// IN ebsdk_ebm_020419/sneak32/include/sys/config.h LINE 110
#if (INT_MAX == 32767) || (defined(__sneak8__))
/* Remember, sneak8 has 3 byte integers... */
typedef long int __int32_t;
typedef unsigned long int __uint32_t;
#else
// IN ebsdk_ebm_020419/samples/hello/source/imgcombGS.h LINE 93
// Confirmation of 6502 CPU used in Bookman
     /*
        ...
     *    The Bookman simulator depends on the particular ordering  *
     * in this structure (`imgExtra').  If this structure changes,  *
     * locations marked as `IMGEXTRA_0' need to be updated as well. *
     *                                *
     *    `useMp' is only used by the 6502 simulation when a source    *
     * buffer address is less than 0x10000.  BTW, because of the    *
     * way the LCD is determined in the wrapper.            *
        ...
     */
// IN ebsdk_ebm_020419/samples/hello/source/biosfont.h LINE 48
// BIOSFONT has the magic number 0xC1C0 as the start of a BIOSOLDFONT struct, first 2 bytes must be 0xC1, 0xC0

Device Teardowns

Some internal photos of the various devices. Some devices will have multiple revisions where the printed circuit boards (PCB) are laid out differently. By examining these, we can begin to identify the various hardware components that compose the system, how they interact with each other for reverse engineering.

Type 440

- Pocket-sized
- Hinged screen cover
- Powered by 2 x CR2032 cells
- Accepts 1 x Bookman1 card

Type 560

- Hinged screen cover
- Stereo audio output via 3.5mm TRS jack
- 3.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Accepts 2 x Bookman1 cards
- Onboard Flash ROM storage, no battery backup required

Type 640

- Powered by 4 x AAA cells
- Accepts 1 x Bookman1 card

Type 770

- Hinged screen cover
- High resolution display
- 3.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Stereo audio output via 3.5mm TRS jack
- Accepts 2 x Bookman1 / MBS cards

Type 840

- Powered by 4 x AAA cells
- Stereo audio output via 3.5mm TRS jack
- Speech output
- Accepts 1 x Bookman1 card

Type 1440

- Successor to the Type 440
- Hinged screen cover
- Powered by 2 x CR2032 cells
- Accepts 1 x Bookman2 card

Type 1450

- Successor to the Type 1440
- Hinged screen cover
- Powered by 2 x CR2032 cells
- Accepts 1 x Bookman3 card

Type 1470

- Available with and without translucent hinged screen cover
- 2.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Accepts 1 x Bookman3 card

Type 1770

- Hinged screen cover
- High resolution display
- 3.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Accepts 2 x Bookman1 / MBS card

Type 1840

- Powered by 4 x AAA cells
- Stereo audio output via 3.5mm TRS jack
- Accepts 2 x Bookman2 / MBS card

Type 1850

- 5 segment resistive touchscreen
- EL cyan-colored backlight
- Speech output
- Hinged screen cover
- 2.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Accepts 1 x Bookman3 card

Type 1870

- Speech output
- Detachable screen cover
- 2.5mm TRS serial port for PC connection
- Powered by 2 x AAA cells
- Accepts 1 x Bookman3 card

CPU halting

  1. Power on the system.
  2. Before the onboard ROM can fully load, press and hold down POWER
  3. Then press CLEAR twice
  4. Bookman1 unit should now be in a state of limbo
  5. Plug in dumper card
  6. Release the POWER button and hopefully LCD still shows limbo state (cleared but LCD active)

CLEAR seems to reset the program counter register and POWER seems to be attached to an interrupt that halts the CPU before triggering reset.

ROM Carts

Pinout analysis

Figuring out pinouts will allow us to easily interface with stored ROM content onboard the devices as well as from ROM cards.

ROM card pinouts

40-pin ROM card interface

Device facing side Label side
WGM-2037 Word Games
KJB-2003 King James Bible
BMC-2 Bookman Memory Card 2MB

Identified a single MPF (Multi-Purpose Flash) device on this PCB: an SST39VF016

  • Storage size: 16 megabits (2MB) per chip, this matches the two possible configurations: BMC-2 (2MB) and BMC-4 (4MB)
  • Download datasheet here

42-pin ROM card interface

Device facing side Label side
BMC-2 Bookman Memory Card 2MB
BMC-4 / ENC-4047 Concise Columbia Encyclopedia (written to BMC)

Identified a flash memory device on this PCB: a SHARP LH28F160BJHE-BTL90

  • Storage size: 16 megabits (2MB) per chip, this matches the two possible configurations: BMC-2 (2MB) and BMC-4 (4MB)
  • Download datasheet here

Pinout mapping process

This 42-pin ROM card interface was found by disassembling a MWD-1450 device. Inside the device we found a PROM chip with original 3rd party manufacturer markings on it.

This was the OKI MR27V3202F-9C for which a datasheet was found online. Methodically probing the PROM pins, we traced each pin to a ROM card trace.

The next step was attempting to read the ROM cards given our matched pinout!

Homebrew ROM dumping tools

Now that we're able to determine the pinout for the ROM cards, it was time to try dumping the ROM cards. A cheap, broken BES-1840 unit was found on eBay which could serve as the basis for a non-destructive ROM card dumper. This was an ideal device as most of the card interface pins connect to pogo-pin testing pads rather than tiny vias (connected through holes). This make soldering wires to the pins much easier. This was by far the most intensive soldering attempted thus far!

BES-1840 husk used as a ROM dumper

Unfortunately, we were only able to get inconsistent signals from this dumper. What was likely happening was that other components on the PCB were coming to life and interfering with the card interface signals once the VCC / GND pins from the card interface were supplied with power.

To make further progress, we felt it necessary to verify whether we were receiving faulty signals from the ROM card (i.e. we weren't dumping the card properly) or the interface board that was cannibalized from the BES-1840 unit. The only way this was possible was soldering directly onto the pins of a Word Games WGM-2037 card and trying a dump directly from the card.

Direct connection with ROM card ROM dump result!

After cutting away the majority of the PCB from the donor BES-1840 unit we were finally able to ensure the zebra strip interface had enough clearance to make a good connection to the snap-in Bookman cards. As a result, several ROMs have now been dumped! I've also developed a web-based interface to manage unattended ROM dumping operations.

Here is a photo of the ROM dumping hardware as of 2021-09-26:

Dumping hardware fixed; silently churning out bits from the Bookman cards ROM dump tool UI

Bookman ROMs

The ROM dumper and the associated dump files are now open source and located at bookmanarchive/rom-dumper. Please see the analysis directory for details on the investigative progress.

Binary analysis

Bookman Connectivity Kit (BCD-4)

The BCD-4 comes with a CD-ROM that contains the setup files for a Windows application called Bookman Desktop Manager (BDM). At the moment, we possess BDM 1.21, released around 2004 which supports connectivity with Bookman 3 devices. There are several pieces to this which will be documented here.

BCD-2USB cable pinout

Bookman Desktop Manager Software

See the supporting software section for the CD-ROM image file. Once installed from the setup EXE within this image, we can find:

Update - 2022-02-21:

The CD key scheme for the Bookman Desktop Manager has been successfully reverse engineered. There are over 34 billion possible CD keys with this scheme. If you are trying to install a copy of BDM you can now generate a valid CD-key online to bypass the setup prompt.

Mobipocket Reader Binary Analysis

Mobipocket Reader app is essentially an SGML browser which displays pre-baked content. Very similar in concept to PhoneGap / Cordova and many modern mobile apps embedding WebViews.

BMC-2 / BMC-4 Flash ROM cartridges

Serial Data Communications

Internal references found within binaries

Brother Super PowerNote (PN-8800FXB)

The 8800FXB is a non-Franklin device that implements a Bookman1 (40-pin) card interface at the bottom of the notebook. The card slot is connected to the motherboard by a daughterboard which likely communicates with the main PowerNote device via serial lines (to be verified).

Here are some teardown photos:

Identified components:

Daughterboard signal analysis

The daughterboard communication signals have been probed and we've been able to determine that the 7 pin ribbon cable attached to the motherboard supplies these pins (Leftmost pin on cable from DB to MB is pin 1):

Additionally a sample of the initial loading signal between the 8800FXB and the daughterboard was captured with PulseView. Here are the capture and setting files:

ROM dump and analysis

We have now dumped the ROM from the KM23C8000 chip on the device: 💾 PN8800FXB.KM23C800.bin

Additionally some of other ROMs for Brother devices has been very helpful in getting an overview of the content; those ROMs are available at kfazz/brother_wp2540ds

Here are some interesting landmarks (offsets) inside the binary content, picked from running strings -o PN8800FXB.KM23C800.bin:

    103 ESPN025A
   
   9370 BMD*
   9969 BMD*
  
  11795 BDOSV720
  11827 BDOSV144
  
  15531 KIOFS: Programmed by Kio.
  15557 Apr.4 1988
  
  
  20946 0123456789'=]-;\|abcdefghijklmnopqrstuvwxyz./,
  21074 )!@#$% &*("+[_:`{ABCDEFGHIJKLMNOPQRSTUVWXYZ
  
  21580 d]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e]e+f !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|
  21750  !"#$%7'908+,-./0123456789**<=>/@ABCDEFGH51230N6+QRST4VWXYZ[\]^-`abcdefgh51230n6+qrst4vwxyz{|
  21853 ^!"#$%&'()*+,-./0123456789:;{=}?@ABCDEFGHIJKLMNOPQRSTUVWXYZ<`>|_~abcdefghijklmnopqrstuvwxyz[]
  
  21956 ^!"#$%7'908+,-./0123456789**{=}/@ABCDEFGH51230N6+QRST4VWXYZ<`>|-~abcdefgh51230n6+qrst4vwxyz[]
  
  22059  $"&*^}'%(~+)/_]0123456789:;
  22088 =>-vABCDEFGHIfKLMNOPQRSTUVWXYZ{\|.?`abcde@ghi[klmnopqrstu#wxyzJj<,!_)
  
  24243  Internal error.  Press CANCEL for MAIN MENU.

  29372  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~

  35001  abcdefghijklmnopqrstuvwxyz'-./ 

  36510 abcdefghijklmnopqrstuvwxyz-'.

  45593 SPELLUSR.DCT
  45606 ABBR.PHR

  46036 *.TDL
  46049 THINGS.TDL

  95961 0....:....1....:....2....:....3....:....4....:....5....:....6....:....7....:....8....:....9....:....0....:....1....:....2....:....3....:

 109093 CA7410852.963=-+*/

 165433 +,-./0123456789:;@=`?
 165455 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 165487 abcdefghijklmnopqrstuvwxyz
 165518 |!"}$%&'()
 165529 +,-./0123456789:;@=`?
 165551 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 165583 abcdefghijklmnopqrstuvwxyz
 165615 !"}$%&'()*+,-./0123456789:;@=`?
 165647 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 165679 abcdefghijklmnopqrstuvwxyz

 169907 BDOSV250

 177292 WP1A FLOPPY


 194233 BDM:

 194526 WP2BRAM01
 194536 WP2BRAM02
 194546 WP2BROM  
 194556 WP2-RAM01
 194566 P18-ROM10
 194582 $$.$

 196641 !"}$%&'()*+,-./0123456789:;@=`?
 196673 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 196705 abcdefghijklmnopqrstuvwxyz

 196875  Insert disk and press RETURN.
 196906  Disk is write protected.  Release the protection and press RETURN to retry.
 196983  File does not exist.  Press RETURN.
 197020  Disk is full, please try again with new disk.  Press RETURN.
 197082  Too many files on disk.  Press RETURN.
 197122  Invalid file type.  Press CANCEL to exit.
 197165  Unidentified disk error.  Press RETURN.
 197206  Battery low.  Can't use Disk Drive.  Disk access not completed.
 197271  Unable to delete the specialized file.  Press CANCEL to exit.
 197334  Incorrect format type or damaged diskette.  Press CANCEL.

 200363 *NEWFILE
 200372 *NEWFILE

 200741  Mark range to print.
 200889  Mark range to convert to document file.

 200992  Line(s) truncated. 

 201352  MENU: 

 201617  Please wait.... 

 202484  Enter your spreadsheet data.  Press FILE to finish. 

 202615  COLUMN 
 202624  FORMAT 
 202633  RECALC 
 202642  SORT 
 202649  CLEAR 
 202657  CONV TO WP FILE 
 202676  COPY 
 202683  DELETE 
 202692  RENAME 
 202701  CONV TO WP FILE 
 202719  PRINT 
 202777 PITCH:  

 204627  Unknown error. 
 204644  Division by zero. 
 204664  Numeric overflow. 
 204684  Numeric underflow. 
 204705  Reference to text cell.  No value. 
 204742  Unbalanced parentheses. 
 204768  Too many parentheses.  Maximum level is 6. 
 204813  Invalid range. 
 204830  Memory full. 
 204845  Invalid entry. 

 205912  Enter cell specification. 

 207625 ERROR

 215487 Floating point 
 215514 underflow
 215535 overflow
 215550 divide by zero
 215568  at location 0x

 217646 HP Laser

 222456 brother SPN-B
 222635 w#6S#
 222901 w#6s#
 222972 w#6s#
 223076 w#6S#

 225916 Discovery end.
 225931 Discovery end.
 225946 No response.
 225959 Disconnected normally.
 226045 abcdefghijklmnopqrstuvwxyz
 226073 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 226101 abcdefghijklmnopqrstuvwxyz
 226129 ABCDEFGHIJKLMNOPQRSTUVWXYZ

 226405 0123456789ABCDEF
 226488 @@ IR TEST MENU ``
 226509 1. Send XID Command (One time)
 226542 2. TxRx Check
 226558 3. Print all H (600 lines)
 226587 4. Endless Printing
 226608 5. Dump Mode
 226624 6. Frame Monitor
 226642 7. Secondary
 226658 8. Print (Short)
 226677 Pause !!
 226891 RNRM
 226899 FRMR
 226917 TEST
 226922 SNRM
 226927 DISC
 226943 SREJ
 226948 UNKNOWN

 243206 AT&FX3&D3
 243216 AT+FCLASS=
 243227 ATDP
 243232 ATDT
 243237 AT+FRH=3
 243246 AT+FTH=3
 243255 AT+FTS=
 243263 AT+FTM=
 243271 AT+FTT
 243278 AT+FRT
 243285 ATH0
 243290 ATH1
 
 243955 CONNECT
 243963 NO CARRIER
 243974 ERROR
 243980 NO DIALTONE
 243992 BUSY
 243997 +FCERROR
 
 245539 SPNBFAX000
 
 245904 *Test
 245918 function
 245933 Send
 245938 Image
 245944 (A4)
 245955 Disp
 245966 Send
 245971 Image
 245977 (A4)
 245988 Send
 245993 Image
 246005 Disp
 246016 Send
 246021 Image
 246033 Send
 246038 White
 246044 (A4)
 246055 Disp
 246066 Send
 246071 White
 246077 (A4)
 246088 Transmit
 246097 Image
 246103 signal
 246116 Disp
 246130 Image
 246136 signal
 246153 Hook
 246167 Hook
 
 246178 Transmit
 246191 zeros

 246203 Transmit
 246216 ones

 246227 Transmit
 246236 Alternate
 246255 Exit
 246278 Data
 246283 Rate
 246291 2400bps
 246299 (V.27ter)
 246313 4800bps
 246321 (V.27ter)
 246335 7200bps
 246343 (V.29)
 246354 9600bps
 246362 (V.29)
 246380 Dial
 246385 number:

 246402 Modem
 246408 Checker
 246422 SELF
 246427 TEST
 246459 Press
 246465 CANCEL
 246475 exit.

 247618 AT&FX3&C1&D3
 247631 ATS0=1
 247638 ATDT11
 247645 ATDT22
 247652 AT+FRM=48
 247662 RING

 250885 Press
 250891 RETURN
 250898 ....please
 250909 wait.
 250920 press
 250926 RETURN.
 250934 Press
 250940 SPACE
 250951 CANCEL
 250959 press
 250965 RETURN
 250972 Unnecessary
 250985 space(s)
 250996 ".",
 251001 "?",
 251006 "!".
 251012 quotation
 251022 mark.
 251028 Missing
 251040 Insert
 251047 another
 251059 press
 251065 RETURN.
 251073 Incorrect
 251084 Move
 251089 cursor
 251100 (yes)
 251110 parenthesis
 251123 user
 251128 dictionary
 251139 Insert
 251146 paper
 251152 /HORIZONTAL
 251164 LINE:
 251170 Press
 251176 SPACE
 251185 change
 251192 setting.
 251201 Highlight
 251211 line(s)
 251227 ATTENUATION
 
 
 264857 NAOKUN
 
 270091 *NEWFILE   P:1    COL:1    KB:IL....:....1....:....2....:....3....:....4....:....5....:....6....:....7..
 
 272725   anata no CALL shita MSG bangou wa genzai tsukawarete orimasen.  
 273469  @@ S E L F   T E S T ``
 273630  1.BUZZER TEST
 273651  2.KEY BOARD TEST
 273675  3.DISPLAY TEST
 273697  4.BATTERY TEST
 273719  5.MEMORY TEST (ROM/RAM) 
 273748  6.FLOPPY DISK DRIVE TEST
 273777  7.INTERFACE TEST
>>>>>>>> 273801  8.BOOKMAN TEST
 273823  9.SERIAL NUMBER
 273846  0.AUTO TEST
 273865  Type Serial number and press RETURN.
 274042 ECHO BACK (ML) OK.
 274218  3.H PATTERN
 274237  4.CROSS TALK PATTERN
 274265  6.NOISE PATTERN
 274288  5.ALL CHARACTER PATTERN
 274319  1.GRAPHIC PATTERN
 274344 Li:NG Vnc:OK AC&NiCd:OK.
 274372 Li:NG Vnc:OK AC&NiCd:NC.
 274400  @ FDD TEST `
 274417  @ BATTERY TEST `
 274438  @ DISPLAY TEST `
 274459  @ INTERFACE TEST `
 274482  @ BUZZER TEST `
 274502 FAX           OK.
 274523 FAX           NG.
 274544 Serial Number: 
 274563  @ ROM/RAM TEST `
 274584  3.RAM TEST
 274602  3.POWER SUPPLY TEST
 274629  1.BATTERY CHECK
 274652  2.AUTO POWER OFF/ON TEST
 274681  Type number.  Press CANCEL for MAIN MENU.
 274727  Type number.  Press CANCEL for SELF TEST MENU.
 274778  Press keys in order.  Press RETURN key twice to go to SELF TEST MENU.
 274852  Press CANCEL key.
 274876  Working...
 274891 KB TEST       OK.
 274912 DISK 2HD TEST OK.
 274933 DISK 2DD TEST OK.
 274954 SPECIAL DISK 2HD OK, XX.
 274982 SPECIAL DISK 2DD OK, XX.
 275010 ROM           OK.
 275031 ROM        ** NG **
 275054 SPECIAL DISK 2HD ERROR XX.
 275084 SPECAL DISK 2DD ERROR XX.
 275113 DISK SW 2HD TEST OK, XX.
 275141 DISK SW 2DD TEST OK, XX.
 275169 DISK SW 2HD ERROR XX.
 275194 DISK SW 2DD ERROR XX.
 275219 Li:OK Vnc:OK AC&NiCd:OK.
 275247 Li:OK Vnc:OK AC&NiCd:NC.
 275275 Li:OK Vnc:NG AC&NiCd:OK.
 275303 Li:OK Vnc:NG AC&NiCd:NC.
 275331  4.CDCC TEST
 275350  @RTC REGISTER TEST `
 275375  @RTC COUNT UP  TEST `
 275401 RTC           OK.
 275422 RTC        ** NG **
 275445  4.AUTO POWER OFF TEST
 275474 SERIAL NUMBER: 
 275493  5.TERMINAL MODE TEST
 275521  2.CDCC TEST   (3LINES)
 275551 DISK ERROR XX.
 275569 AUTO POWER ON, BACKUP OK.
 275598 AUTO POWER ON, BACKUP *NG*
 275628 I shall return.  Please press CODE+Q at power on.  See you later, bye-bye!
 275708 ONLY AFTER DOWN MEMORY!
 275735 Set printer. Press CANCEL for SELF TEST MENU.
 275784 Li:NG Vnc:NG AC&NiCd:OK.
 275812 Li:NG Vnc:NG AC&NiCd:NC.
 275840 KEY BOARD TEST
 
 276973  RET
 276981 CAPS
 277055 SHIFT 
 277139 SHFT
 277150 CODE
 277170  SPACE
 277203 TERMINAL MODE TEST OK.
 277228 TERMINAL MODE TEST ** NG **
 277259 DISPLAY TEST  OK.
 277280 DISPLAY TEST ** NG **
 277305  Press O(OK) or N(NG) key.
 277335  0.AUTO SELF TEST (PART)
 277366  1.AUTO SELF TEST (ALL)
 277396  2.BACKLIT TEST
 277418  Current attribute:   H.   New attribute: 
 277464 Type new attribute and press RETURN.
 277504 @@ DUMP LIST ``
 277523 Press UP, DOWN, PRES, NEXTS, GOTO(address), CODE+B(change bank) keys.
 277598 Bank : +0 +1 +2 +3 +4 +5 +6 +7  +8 +9 +A +B +C +D +E +F  0123456789ABCDEF
 277675 Type dump address and press RETURN.
 277714  DUMP ADDRESS: 
 277733  Press RETURN key to SELF TEST MENU.
 277773  Press O(OK) or N(NG) key.  SPACE key to retry test.
 277829  Press RETURN key to SELF TEST MENU.  SPACE key to retry test.
 277895  @ AUTO POWER OFF/ON TEST `
 277926 VRAM          OK.
 277947 VRAM       ** NG **
 277970  7.OFFSET&CURSOR TEST
 277998  Insert write protected disk.
 278031  Change to test disk.
 278056  1.GAME SOUND 1 TEST
 278083  2.GAME SOUND 2 TEST
 278110  3.GAME SOUND 3 TEST
 278137  4.GAME SOUND 4 TEST
 278164  5.GAME SOUND 5 TEST
 278191 DISK 2HD ERROR XX.
 278213 DISK 2DD ERROR XX.
 278235  6.ECHO BACK MODE TEST
 278264 IR TEST       OK.
 278285 IR TEST    ** NG * XX.
 278324  @@ S P E C I A L   S E L F   T E S T ``
 278380  Type Serial number and press RETURN.  Press CANCEL for MAIN MENU.
 278450 SRAM          OK.
 278471 SRAM       ** NG **
 278494  Connect echo back test connector for RS and press RETURN.
 278556  2.RAM TEST (HIGH SPEED) 
 278585 AC/NiCd:AC.
 278600 AC/NiCd:NiCd.
 278617  4.FDD SW TEST
 278638 BUZZER TEST   OK.
 278659 BUZZER TEST ** NG **
 278683  Li:          OK.
 278704  Li:       ** NG **
 278727  AC Adaptor:  OK.
 278748  AC Adaptor:  NC.
 278769  NiCd:        OK. 
 278791  NiCd:        NC. 
 278813  NiCd:        LOW.
 278835 BATTERY TEST  OK.
 278856 BATTERY TEST ** NG **
 278881  A.IR TEST(3 LINE)
 278906  B.CDCC TEST(3 LINE)
 278933  C.AUTO POWER OFF/ON TEST
 278962  D.FAX TEST
 278980  E.FAX SEND
 279123  @ BOOKMAN ROM/RAM TEST `
 >>>>>> 279152 BOOKMAN ROM      OK.
 >>>>>> 279176 BOOKMAN ROM   ** NG **
 >>>>>> 279202 BOOKMAN RAM      OK.
 >>>>>> 279226 BOOKMAN RAM   ** NG **
 >>>>>> 279252 BOOKMAN CARD     OK.
 >>>>>> 279276 BOOKMAN CARD  ** NG **
 279302  Press RETURN to start LEVEL TEST.
 279340 ECHO BACK (ML) NG  XX.
 279366 CARD      ** NONE **
 279390  MEDIA TYPE (2DD or 2HD)
 279418  T. 
 279433  T. 
 279448  @ FAX TEST `
 279473 MODEM         OK.
 279494 MODEM      ** NG **
 279517 NCU           OK.
 279538 NCU        ** NG **
 279561 RING          OK.
 279582 RING       ** NG **
 279605 FAX           OK.
 279626 FAX        ** NG **
 279649 LEVEL         OK.
 279670 LEVEL      ** NG **
 
 280473 LINE
 280490 COLUMN
 280509 ATTRIBUTE
 
 291011 Anchorage,
 291026 Athens
 291034 Atlanta,
 291047 Auckland
 291057 Bangkok
 291066 Berlin
 291074 Cairo
 291081 Calcutta
 291090 Chicago,
 291104 Denver,
 291116 Hong
 291121 Kong
 291127 Honolulu,
 291141 Jakarta
 291150 London
 291162 Angeles,
 291175 Madrid
 291183 Manila
 291191 Mexico
 291198 City
 291204 Montreal,
 291218 Moscow
 291225 New
 291230 Delhi
 291241 York
 291246 City,
 291256 Paris
 291263 Peking
 291271 Phoenix,
 291291 Janeiro
 291300 Rome
 291310 Francisco,
 291325 Singapore
 291336 Sydney
 291344 Taipei
 291352 Tokyo
 291358 Toronto,
 291372 Vancouver,
 291387 Washington,
 291403 Wellington
 291420 Canada
 291428 Australia
 291439 Brazil
 291447 China
 291454 Commonwealth
 291470 Indep.
 291478 Egypt,
 291485 A.R.
 291494 France
 291502 Germany
 291511 Greece
 291519 Hong
 291524 Kong
 291530 India
 291537 Indonesia
 291548 Italy
 291555 Japan
 291562 Mexico
 291570 Philippines
 291583 Singapore,
 291601 Spain
 291608 Thailand
 291618 Taiwan
 291626 United
 291633 Kingdom
 291646 Zealand

 292786 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 292911 MENU
 292916 CARD
 292921 SPELL
 292931 HELP
 292939 SPACE
 292945 RETURN
 292960 CANCEL
 292967 ON/OFF
 292974 CODE
 292979 SHIFT
 292985 APOSTROPHE
 292996 ASTERISK
 293007 PLUS
 293012 MINUS
 293020 ZERO
 293033 THREE
 293039 FOUR
 293044 FIVE
 293053 SEVEN
 293059 EIGHT
 293065 NINE

 295152 *.CPF

 295307 COMM    CPF

 299781 *.WPT

 300445 $COMPUS!
 300465 $COMPUSCPF

 304893 ATDT
 304898 ATDP

 305196 CONNECT

 306863 Password:

 320103 CONNECT
 320116 Host Name:
 320135 User ID:
 320309 CONNECT
 320319 CONNECT 1200
 320334 CONNECT 2400
 320354 AT&C1&D3
 320364 ATE1Q0V1X3
 320376 AT+FCLASS=0
 320389 ATH0
 320396 !"#$%&'()*+,-./:;<=>?@[
 320430 !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
 320464 ACEINOUYaceinouy
 320582 ~!"#$%&'()*+,-./:;<=>?@[
 320745 !"#$%&'()*+,-./:;<=>?@[\]
 320977 uAEIOUYaeiouy
 321043 ~ !"}$%&'()*+,-./:;@=`?
 321207 !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
 321241 !"#$%&'()*+,-./:;<=>?@[
 321274 !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
 321623 ATB0
 321629 ATB1
 321635 ATS10=255
 321646 ATS0=1
 321654 ATS0=0

 321982 *****
 321988 Communication
 322002 test
 322007 *****
 322019 Sending
 322027 self
 322032 print
 322038 pattern
 322052 Display
 322068 Sending
 322076 self
 322081 print
 322087 pattern
 322101 Setup
 322107 communication
 322121 parameter
 322137 Answer,
 322145 Sending
 322165 Answer,
 322173 Sending
 322193 Answer,
 322201 Sending
 322209 0101
 322214 pattern
 322228 Originate,
 322239 Sending
 322259 Originate,
 322270 Sending
 322290 Originate,
 322301 Sending
 322309 0101
 322314 pattern
 322328 Configuration
 322342 setting
 322354 V.22
 322364 V.22
 322378 Bell
 322392 Bell
 322397 212A
 322407 ---------
 322422 Type
 322427 number.
 322436 Press
 322442 CANCEL
 322453 SELF
 322458 TEST
 322463 MENU.
 322474 Sending
 322482 self
 322487 print
 322493 pattern.
 322503 Press
 322509 CANCEL
 322520 MENU.
 322531 Sending....
 322548 Press
 322559 change
 322566 setting.
 322576 Press
 322582 RETURN
 322592 set.
 322607 Error!
 322615 Press
 322621 CANCEL
 322632 MENU.
 322677 !#~#
 322705 ~#W~ob
 323127 Pr#s#
 323316 BUSY
 323321 NO CARRIER
 
 353063 MR/MS
 353072 LAST
 353077 NAME
 353085 FIRST
 353091 NAME
 353099 TELEPHONE
 353123 TITLE
 353132 COMPANY
 353143 ADDRESS
 353154 CITY
 353159 M10STATE
 353168 M11ZIP

 353262 ADDRESS.MRG
 353275 *.MRG

 354774 SELECT.MRG

 392116 0123456789.ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
 392223 0123456789AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz.
 392287 \$0123456789AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz#}]~[{@*.
 392361 0123456789AaBbCc>DdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz <\{`}.
 392432 0123456789AaBbCc`{DdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz.
 392498 0123456789AaBbCc\~DdEeHhIi!
 392533 JjKkLlMmNnOo[{PpQqRrSs}|TtUu]#VvWwXxYyZz.

 393219 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 393303 Save
 393308 file
 393316 internal
 393325 memory?
 393341 save,
 393347 CODE+D
 393357 abandon.
 393369 Overwrite.
 393388 overwrite.
 393402 Type
 393407 filename
 393422 Please
 393429 wait....
 393441 Select
 393450 file
 393459 Press
 393465 FILE
 393470 to display
 393481 MAIN
 393486 MENU.
 393495 Delete all data on the disk?  Press Y(yes) or N(no).
 393551 Reading
 393559 disk
 393564 directory
 393580 POWER
 393586 FAILURE....recover
 393605 AUTO
 393610 SAVE
 393615 FILE?
 393631 (no).
 393640 Backup
 393647 memory
 393654 cleared.
 393666 Are you sure you want to delete?  
 393709 (no).
 393722 tabs
 393727 cleared.
 393749 block
 393764 destination
 393780 blocked
 393788 text
 393799 Start
 393805 typing
 393812 your
 393817 text.
 393824 Press
 393830 FILE
 393838 finish.
 393853 each
 393858 item
 393867 press
 393887 finish.
 393901 margin
 393908 position
 393925 left
 393933 right
 393939 margin.
 393950 Enter
 393956 header
 393963 text
 393972 Press
 393978 LINE
 393990 delete
 393997 text.
 394006 Enter
 394012 footer
 394019 text
 394028 Press
 394034 LINE
 394046 delete
 394053 text.
 394063 PAGE:
 394072 Working....
 394090 block
 394096 end.
 394112 store
 394118 temporary
 394128 file
 394133 press
 394139 TEMP.
 394156 recall
 394163 temporary
 394173 file.
 394183 recall
 394190 temporary
 394200 file
 394212 Type
 394217 search
 394224 word(s).
 394241 start
 394247 search.
 394258 Type
 394263 search
 394274 replace
 394282 word(s).
 394292 Press
 394306 select,
 394314 RETURN
 394324 start
 394330 search.
 394341 Global?
 394357 TAB(no).
 394369 Global
 394376 replace
 394384 completed.
 394405 replace
 394413 word(s),
 394433 replace
 394441 word(s),
 394456 exit.
 394466 Type
 394471 number
 394482 Press
 394516 text.
 394532 search
 394539 again,
 394549 press
 394561 stop
 394566 search.
 394577 Move
 394582 cursor,
 394596 hyphenate,
 394614 continue,
 394630 exit.
 394639 Insert
 394646 source
 394653 disk
 394664 Insert
 394671 destination
 394683 disk
 394694 Copying
 394706 file
 394717 Delete
 394728 files?
 394745 (no).
 394755 FILENAME:
 394769 Select
 394778 file
 394789 Select
 394798 file
 394807 press
 394813 MENU.
 394820 Press
 394829 to display
 394840 MEMORY
 394847 INDEX.
 394857 Type
 394862 number
 394875 Reading
 394887 file
 394898 Deleting
 394911 file
 394922 Initializing disk
 394946 Saving
 394953 AUTO
 394958 SAVE
 394963 FILE
 394974 Deleting
 394983 AUTO
 394988 SAVE
 394993 FILE
 395004 Saving
 395015 file
 395023 disk
 395034 Select
 395041 from
 395046 menu
 395057 Select
 395064 from
 395069 menu
 395078 press
 395089 display
 395101 menu.
 395113 change
 395120 setting
 395134 Initializing
 395147 card
 395159 Spelling
 395168 Corrector
 395178 1985
 395185 Electronic
 395196 Thesaurus
 395206 1985
 395211 Inso
 395216 Corporation
 395238 save.
 395257 block
 395266 delete
 395289 block
 395298 move
 395309 Type
 395314 filename
 395327 press
 395333 RETURN
 395349 another
 395357 screen.
 395368 Battery
 395376 low.
 395382 Can't
 395392 Disk
 395397 Drive.
 395411 text files in memory
 395432 must
 395440 saved
 395449 disk
 395454 before
 395461 beginning.
 395475 Press
 395481 CODE+S
 395491 save
 395496 files,
 395503 CODE+D
 395513 delete
 395520 files.
 395530 Press
 395536 RETURN
 395546 delete
 395553 current
 395561 file,
 395567 CANCEL
 395577 exit.
 395586 Select
 395595 file
 395604 press
 395610 MENU.
 395617 Press
 395623 CANCEL
 395634 ADDRESSBOOK.
 395650 Select
 395659 file
 395668 press
 395674 MENU.
 395681 Press
 395687 CANCEL
 395698 SCHEDULER/CALENDAR.
 395721 Select
 395730 file
 395739 press
 395745 MENU.
 395758 memory
 395765 files
 395771 must
 395779 saved
 395788 disk
 395796 deleted
 395804 before
 395811 starting
 395820 SELF
 395825 DEMO.
 395837 select
 395844 file(s)
 395856 CODE+SPACE
 395869 Select
 395880 files.
 395890 Continue
 395902 copy?
 395918 (no).
 395927 Converting the file....please wait.
 395969 select file(s)
 395986   (*)=Selected file(s)
 396012 Select a file to convert
 396039   Press
 396049  to exit.
 396062 Select
 396071 file and press MENU.
 396093 Press
 396099 FILE
 396104 to display
 396115 MAIN
 396120 MENU.
 396129 Converting completed.  Insert original disk
 396179 Press D to switch between double column and normal view.
 396239 Are you sure you want to delete?  Press Y(yes) or N(no).
 396299 Select the format type.
 396324 Press 1 for Double density or 2 for High density.
 396377 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 396461 Type
 396466 data;
 396475 alter
 396481 length,
 396489 press
 396495 TCLR(longer);
 396509 TSET(shorter);
 396524 FILE
 396532 finish.
 396546 change
 396553 setting.
 396563 (*=Print
 396572 this
 396577 record.)
 396589 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 396673 Printing.
 396687 pause.
 396697 Printing
 396706 paused.
 396718 continue.
 396735 printer
 396749 Insert
 396756 paper
 396768 Type
 396773 number.
 396786 printer,
 396801 start
 396807 printing.
 396829 printer,
 396844 start
 396850 printing.
 396866 Change
 396876 ASCII
 396889 wheel
 396963 ABBREVIATED
 396975 PHRASE
 396982 MEMORY
 396992 Printer
 397007 ready.
 397015 Press
 397027 exit.
 397036 Printer
 397051 ready.
 397073 finish.
 397088 cursor
 397098 select.
 397115 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 397199 Press
 397205 FILE
 397213 finish.
 397225 DEAD:
 397253 enter
 397259 data,
 397265 FILE
 397273 finish.
 397282 Press CODE+SPACE to check.
 397312 Check?  
 397329 (no).
 397338 Type number.  
 397355  to set date.
 397375  to sort.
 397388 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 397491 WORD
 397504 MENU
 397515 Checking....
 397534 IGNORE
 397549 SUGGESTION
 397568 RETYPE
 397594 SUGGESTIONS
 397615 suggestions.
 397641 MENU
 397651 Searching
 397661 dictionary
 397682 cursor
 397692 select.
 397709 Type
 397714 word
 397725 Word
 397734 long.
 397744 SUSPECT
 397752 WORD:
 397762 Delete
 397773 word
 397778 from
 397797 (no).
 397806 Word
 397811 added
 397827 Word
 397832 added.
 397840 Press
 397846 MENU
 397855 other
 397861 options.
 397871 Press
 397877 FILE
 397885 finish.
 397896 Delete
 397907 words
 397930 (no).
 397939 Select
 397946 item
 397955 press
 397961 SPACE
 397970 change
 397977 setting.
 397994 finish.
 398008 IGNORE
 398023 ERASE
 398029 SECOND
 398036 WORD
 398047 REDUNDANT
 398057 WORD:
 398070 add,
 398075 type
 398080 word.
 398087 Press
 398093 MENU
 398102 other
 398108 options.
 398118 Press
 398124 FILE
 398132 finish.
 398146 add,
 398151 type
 398156 word
 398167 Type
 398172 letter
 398182 move
 398187 cursor.
 398198 ADD:
 398207 Loading
 398224 Saving
 398240 User
 398245 dictionary
 398256 already
 398264 exists.
 398277 to overwrite.
 398294 WORD:
 398305 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 398391 THESAURUS
 398407 NOUN
 398415 VERB
 398423 ADJ.
 398431 ADV.
 398440 SPECIFIED
 398450 WORD:
 398460 Serial Number: 
 398479 SERIAL
 398486 NUMBER:
 398499 Current
 398507 attribute:
 398528 attribute:
 398543 Type
 398552 attribute
 398568 Type
 398573 dump
 398578 address
 398593 DUMP
 398598 ADDRESS:
 398611 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 398702 view
 398707 first
 398713 screen.
 398724 Cancel?
 398742 (no).
 398754 SELF
 398759 DEMO
 398764 PRINTING
 398779 Select
 398788 file
 398799 Please set printer and press CODE+PRINT so that I may print out a copy of my
 398879 presentation for you, or press
 398912  to re-start the demonstration.
 398950  for next screen,
 398970  for first screen, CODE+FILE for MAIN MENU.
 399017 Press CODE+FILE for MAIN MENU.
 399051 Press FILE to display MAIN MENU.
 399087 Press FILE to display CREATE/EDIT screen.
>>>>>>>> 399132 BACK
>>>>>>>> 399152 :SHIFT
>>>>>>>> 399162 CLEAR
>>>>>>>> 399169 :CANCEL,
>>>>>>>> 399187 ENTER
>>>>>>>> 399194 :RETURN
>>>>>>>> 399205 HELP
>>>>>>>> 399212 :HELP(CODE+H)
>>>>>>>> 399229 MENU
>>>>>>>> 399236 :MENU
>>>>>>>> 399245 ON/OFF
 399252 :FILE
 399268 (SPELL)
>>>>>>>> 399284 :TAB
>>>>>>>> 399292   +UP
>>>>>>>> 399299 :CODE+
>>>>>>>> 399306 (SPELL)
>>>>>>>> 399317   +DN
 399324 :CODE+TAB
 399341 :CODE
 399356 :CODE+1
 399367 GREEN
 399374 :CODE+2
 399385 YELLOW
 399392 :CODE+3
 399403 BLUE
 399410 :CODE+4
>>>>>>>> 399421 @@RED``
>>>>>>>> 399433 @@GREEN``
>>>>>>>> 399445 @@YELLOW``
>>>>>>>> 399457 @@BLUE``
 399469 Printing....
 399485 DISK
 399493 MEMORY
 399503 Used:
 399513 Free:
 399523 Used
 399535 TEXT:
 399545 Free
 399557 TEXT:
 399567 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 399652 DEAD:
 399671 *NEWFILE
 399683 *ADDRESSBOOK
 399699 ABBR    .PHR
 399715 SPELLUSR.DCT
 399731 THINGS
 399741 MARGIN
 399752 PITCH:
 399763 L.SPACE:
 399806 SHIFT
 399825 CAPS
 399982 SPELL
 399994 REMAIN:
 400005 .WPT
 400013 .TXT
 400021 .DCA
 400029 .TDL
 400037 .DCT
 400045 .PHR
 400053 .SPR
 400061 REMAIN:
 400076 USER
 400081 DICTIONARY
 400098 TOTAL
 400104 WORDS:
 400115 Brother
 400123 POWERNOTE
 400133 PRINTER
 400151  MEMORY INDEX
 400178 PRINTER
 400206  DISK INDEX
 400228 PRINTER
 400244 LINE
 400252 LINE
 400266 PRINT
 400272 MENU
 400283 PRINT
 400289 FILE:
 400298 STARTING
 400307 PAGE
 400315 ENDING
 400322 PAGE
 400330 NUMBER
 400340 COPIES
 400350 HEADER
 400357 PRINT
 400366 FOOTER
 400373 PRINT
 400382 MERGE
 400388 PRINT
 400413 PAPER
 400419 HANDLING
 400434 Manual
 400445 Continuous
 400473 PAUSE
 400486 CHANGE
 400496 DOUBLE
 400503 COLUMNS
 400514 SPACE
 400520 BET.
 400525 COLUMNS
 400562 COL:
 400572 MRG:
 400580 PAPER SIZE
 400593 (LINES)  
 400609  TEXT AREA
 400636   TOP MARGIN
 400665  HEADER
 400689   TOP SPACE
 400734   BOTTOM SPACE
 400765  FOOTER
 400789   BOTTOM MARGIN
 400836 SEARCH
 400849 REPLACE:
 400867 LASER
 400873 PRINTER
 400884 .APL
 400895 ABBREVIATED
 400907 PHRASE
 400920 .MRG
 400929 Brother
 400937 TYPEWRITER
 400951 .DTB
 400959 .CPF
 401230 @@ ALARM SETTING ``
 401345 LAYOUT
 401358 REMAIN:
 401380 MONTH
 401405 MEMORY:
 401417 Epson
 401425 INKJET
 401432 PRINTER
 401443 TOP MARGIN
 401457 TOP SPACE
 401470 HEADER
 401480 TEXT AREA
 401493 FOOTER
 401503 BOTTOM SPACE
 401519 BOTTOM MARGIN
 401570 INKJET
 401577 PRINTER
 401591 DISK
 401596 APPLICATION
 401691 CALCULATOR
 401903  OFF
 401915   7 
 401927   8 
 401939   9 
 401951   - 
 402075  +/-
 402087   4 
 402099   5 
 402111   6 
 402123   + 
 402265   1 
 402277   2 
 402289   3 
 402301   * 
 402443   0 
 402455   . 
 402467   = 
 402479   / 
 402627 Wireless
 402639 *SCHEDULER/CALENDAR
 402663 Canon
 402674 INKJET
 402681 PRINTER
 402741 January
 402752 February
 402764 March
 402773 April
 402789 June
 402797 July
 402805 August
 402815 September
 402828 October
 402839 November
 402851 December
 402863 MONTH:
 402873 DAY:
 402881 YEAR:
 402890 SEARCH:
 402904 TITLE:
 403026 TIME
 403031 SETTING
 403070 MONTH
 403094 YEAR
 403106 TIME
 403118 AM or PM
 403134 M/D/Y or D/M/Y :
 403154 12Hr. or 24Hr. :
 403224 M/D/Y
 403233 D/M/Y
 403242 12Hr.
 403251 24Hr.
 403267 ALARM TIME
 403284 PRINTER
 403305 PRINTER
 403318 PRINTER
 403326 SIZE
 403334 QUALITY
 403345 CONNECTOR
 403358 BAUD
 403363 RATE
 403371 PARITY
 403381 DATA
 403386 BITS
 403394 STOP
 403399 BITS
 403408 Brother
 403427 MATRIX
 403434 PRINTER
 403446 Brother
 403465 MATRIX
 403472 PRINTER
 403484 Brother
 403495 DAISY
 403501 WHEEL
 403507 PRINTER
 403519 Brother
 403530 LASER
 403536 PRINTER
 403548 Epson
 403566 MATRIX
 403573 PRINTER
 403585 Epson
 403604 MATRIX
 403611 PRINTER
 403639 MATRIX
 403646 PRINTER
 403675 MATRIX
 403682 PRINTER
 403694 Other
 403729 NARROW
 403742 WIDE
 403751 NLQ(LQ)
 403765 DRAFT
 403775 Parallel
 403790 Serial
 403801 9600
 403810 4800
 403819 2400
 403828 1200
 403855 None
 403873 Even
 403882 8bits
 403892 7bits
 403903 1bit
 403912 2bits
 403922 Brother
 403933 INKJET
 403940 PRINTER
 403951 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 404038 add,
 404043 type
 404048 phrase.
 404060 edit,
 404075 other
 404081 options,
 404090 press
 404096 MENU.
 404105 Type
 404110 phrase
 404117 data
 404126 Press
 404142 move
 404147 cursor.
 404158 Edit
 404180 Saving
 404187 abbreviated
 404199 phrase
 404206 memory
 404219 Loading
 404227 abbreviated
 404239 phrase
 404246 memory
 404259 Abbreviated
 404271 phrase
 404278 memory
 404285 already
 404293 exists.
 404306 to overwrite.
 404323 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 404407 Type
 404412 mark
 404423 Edit
 404432 error.
 404443 starting
 404452 point
 404462 press
 404468 GRAM
 404476 check.
 404486 SUSPECT
 404494 MARK:
 404507 PUNCTUATION
 404527 RETYPE
 404545 IGNORE
 404560 REPLACE
 404576 RETYPE
 404598 IGNORE
 404613 EDIT
 404627 suggestion.
 404642 SUGGESTION
 404660 SUSPECT
 404668 MARK:
 404678 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 404765 search,
 404773 select
 404782 word
 404796 search,
 404804 select
 404813 word
 404825 recount,
 404834 press
 404840 TAB.
 404848 Counting....
 404864 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 404949 0....v....1....v....2....v....3....v....4....v....5....v....6....v....7....v....
 405061  CTR   :CODE+F  COPY  :CODE+C  PITCH :CODE+1
 405127  RMF   :CODE+R  DELETE:CODE+D  PRINT :CODE+P
 405193  BOLD  :CODE+B  MOVE  :CODE+E  INSERT:CODE+I
 405259  UNDER :CODE+N  LOCK  :CODE+L  GOTO  :CODE+G
 405325  PAGE BREAK :CODE+A
 405346 EDIT  :TAB   
 405382  NUMERIC    :CODE+Q
 405465  CTR     :CODE+F
 405503  RMF     :CODE+R
 405541  LOCK    :CODE+L
 405579  NUMERIC :CODE+Q
 405617  PAGE BREAK     
 405658 :CODE+A
 405730  COPY   :CODE+C  PRINT     :CODE+P
 405786  DELETE :CODE+D  DISK READ :CODE+F
 405842  RENAME :CODE+R  CONV TO WP FILE  
 405901 :CODE+O
 405941 You may retype label name and press RETURN.  Press FILE to finish.
 406011 Type
 406016 data.
 406023 Press
 406029 CODE+RETURN
 406044 display
 406052 view
 406057 screen,
 406068 FILE
 406076 finish.
 406090 primary
 406098 sort
 406103 label
 406118 secondary
 406128 sort
 406133 label
 406149 cursor
 406159 select.
 406176 Type
 406181 select
 406188 condition.
 406200 Press
 406213 start
 406219 select.
 406230 Press
 406236 CODE+S
 406246 save,
 406255 press
 406261 PRINT
 406270 print.
 406280 Press
 406286 SPACE
 406295 change
 406302 setting.
 406324 cursor
 406334 select
 406341 label
 406347 name
 406356 press
 406362 SPACE
 406371 set,
 406382 clear.
 406392 Move
 406397 cursor
 406407 starting
 406416 position
 406435 set.
 406443 Use cursor to select label name and press SPACE to set, SPACE again to clear.
 406524 printing.
 406544 start
 406550 printing.
 406570 enter
 406576 data,
 406585 FILE
 406593 finish.
 406604 Erase
 406610 current
 406618 file
 406627 load
 406632 file
 406637 from
 406642 disk?
 406658 (no).
 406671 delete
 406678 complete.
 406691 Delete
 406698 all?
 406713 (no).
 406725 PRINT
 406731 MENU
 406745 LABEL
 406755 PRINT
 406761 MENU
 406775 POSITION
 406788 PRINT
 406794 MENU
 406813  SELECT MENU
 406839 SELECTED
 406848 DATA:
 406857 RECORDS
 406872 PRINT
 406878 FILE:
 406888 RECORD:
 406899 PRINT
 406905 APPLICATION
 406920 PRINT
 406926 RECORDS
 406937 PITCH
 406946 PAUSE
 406956 KEYBOARD
 406965 CHANGE
 406975 LABEL
 406981 SIZE
 406989 NUMBER
 406999 LABELS
 407006 ACROSS
 407017 ASCENDING
 407031 DESCENDING
 407048 LABEL
 407060 LIST
 407070 ALL
 407079 SELECTABLE
 407126 YES
 407153 15/16
 407171 7/16
 407195 MEMORY:
 407209 copied
 407225 moved
 407240 deleted
 407254 Press 
 407264  to go to top or bottom record.
 407307 TYLE
 407324 LOCK
 407341 TR/RMF
 407377 BBR/THR
 407435 PRINT
 407472 DERLINE
 407494 XPAND
 407532 ELETE
 407568 ENTERING
 407591 IGHT
 407596 MARGIN
 407603 FLUSH
 407614 SPELL
 407627 HECK
 407639 USER
 407644 DICTIONARY
 407662 AINTENANCE
 407678 USER
 407683 DICTIONARY
 407712 USER
 407717 DICTIONARY
 407746 ABBREVIATED
 407758 PHRASE
 407772 AINTENANCE
 407788 ABBREVIATED
 407800 PHRASE
 407825 ABBREVIATED
 407837 PHRASE
 407873 THESAURUS
 407901 THESAURUS
 407925 EARCH
 407945 EPLACE
 407966 YPHEN
 407972 SCAN
 407989 APER
 407994 SIZE
 408013 EADER
 408033 OOTER
 408053 CALE
 408058 LINE
 408063 ON/OFF
 408086 SCREEN
 408107 HANGE
 408113 SCREEN
 408190 OOKMAN
 408215 CLEAR
 408236 LIST
 408253 NTRY
 408290 ELETE
 408303 INSERT
 408335 NSERT
 408341 TIME
 408360 ORLD
 408365 TIME
 408398 LOCK
 408403 DISPLAY
 408416 CITY
 408447 SETTING
 408467 RINT
 408500 ELETE
 408518 ENAME
 408529 DISK
 408550 LIST
 408562 RINT
 408572 LIST
 408584 RINT
 408617 ELETE
 408638 DELETE
 408689 RINT
 408782 DELETE
 408801 EMORY
 408835 ENAME
 408846 DISK
 408883 DISK
 408888 DELE
 408935 PAGE
 408947 REAK
 408957 PAGE
 408969 RINT
 408986 UPER
 408995 ON/OFF
 409008 SUPER
 409055 DISK
 409060 DELE
 409101 UNCTION
 409196 SELEC
 409220 NSERT
 409243 DELETE
 409265 RECORD
 409289 LABEL
 409312 RECORD
 409333 OTTOM
 409339 RECORD
 409351 LABEL
 409364 ONGER
 409376 LABEL
 409389 HORTER
 409408 ALENDAR
 409428 ELETE
 409447 LIDAY
 409531 ONTHLY
 409554 SETTING
 409574 LARM
 409579 SETTING
 409599 PTIONS 
 409618 XIT 
 409634 IEW LAST PAGE   
 409692  SEND WP TEXT(W/ASCII)  
 409723 O PROTOCOL 
 409738  RECEIVE ASCII FILE  
 409766 O PROTOCOL 
 409781  SEND WP 
 409797 EXT(.WPT)
 409813  RECEIVE WP 
 409832 EXT(.WPT)
 409848  SEND WP TEXT(W/ASCII)  
 409879 MODEM
 409891  RECEIVE ASCII FILE  
 409919 MODEM
 409939 LOSE
 409944 FILE
 409962 ELETE
 409968 FILE
 409985 ELETE
 409991 CURSOR
 409998 DATE
 410010 DELETE
 410024 ECORDS
 410037 TODAY'S
 410045 DATE
 410055 DELETE
 410072 RECORDS
 410094 CREEN
 410113 :00AM
 410120 5:30PM
 410132 12:00
 410146 11:30PM
 410159 12:00
 410173 11:30AM
 410193 ACKLIT
 410200 ON/OFF
 410219 RINTER
 410245 UTOR
 410255 SELF
 410276 PASSWORD
 410300 PASSWORD
 410324 HANGE
 410330 PASSWORD
 410344 CANCE
 410357 PASSWORD
 410378 END 
 410394 ECEIVE 
 410405  INFORMATION 
 410425 OAD 
 410433  INFORMATION 
 410453 AVE 
 410461  INFORMATION 
 410481 OAD 
 410489  INFORMATION 
 410509 AVE 
 410526 NVERT 
 410544 P TEXT  .WPT 
 410558  ASCII    .TXT 
 410585 SCII    .TXT 
 410599  WP TEXT  .WPT 
 410626 PREAD   .SPR 
 410640  LOTUS 123.WPT 
 410667 OTUS 123.WPT 
 410681  SPREAD   .SPR 
 410708 O DO LIST 
 410722  SEARCH WORD(S) 
 410745 ORWARD  
 410757  SEARCH WORD(S) 
 410780 ACKWARD 
 410792  SEARCH WORD(S) A
 410824  SEARCH 
 410839 LARM SETTING(S) 
 410867 O TO MONTH/YEAR
 410898 PUT DATA 
 410919 LOCK RECORD 
 410944 BEL 
 410960 HANGE SCREEN 
 410985 ELETE LABEL  
 411042 EMORY
 411076 O DO LIST 
 411099 PUT DATA 
 411121 BEL 
 411129  LABEL 
 411143 ONGER  
 411154  LABEL 
 411168 HORTER 
 411187 ELETE 
 411205 ELETE CURSOR RECORD   
 411231  DELETE C
 411247 ECKED RECORDS 
 411265  DELETE 
 411280 LL RECORDS
 411321 EADLINE
 411335  UNCHECKED REC
 411356 RDS 
 411372 NSERT 
 411391 HEDULER 
 411411 OAD 
 411427 AVE 
 411444 HEDULER 
 411464 LARM 
 411473  ALARM 
 411487 ET   
 411496  ALARM 
 411510 LEAR 
 411527 LL CLEAR   
 411568 ELETE
 411580  MOV
 411606 EW RECORD
 411630 OP RECORD
 411654 OTTOM RECORD 
 411681 AULT SETTING  
 411709 AULT SETTING 
 411734 HONE 
 411751 OMPUSERVE
 411776 SCONNECT 
 411807 RINTER SET UP 
 411825  PASSWORD 
 411847 ET    PASSWORD 
 411874 HANGE PASSWORD 
 411893  CANCE
 411906  PASSWORD 
 411920  QUICK CHARG
 411939  (& POWER OFF) 
 411958  SELF DEM
 411979 Type number to select or move cursor
 412022 Type
 412027 password
 412040 entry
 412052 Type password
 412079 set,
 412087 CODE+D
 412097 delete,
 412108 CODE+R
 412118 rename.
 412129 Editing
 412137 newfile,
 412146 type
 412151 password
 412166 Delete
 412173 current
 412181 file?
 412195 delete,
 412203 CANCEL
 412213 type
 412218 password.
 412231 Type current password
 412259 Type new password
 412286  to start demonstration or CODE+FILE for MAIN MENU.
 412360  to turn POWER OFF and charge quickly.
 412405  Press PRE S/NEXT S or 
 412431  to scroll the     
 412460  screen.  Press CANCEL to exit HELP function.
 413706 display
 413718 daily
 413724 screen,
 413735 press
 413741 FILE
 413749 finish.
 413760 Type
 413765 data.
 413772 Press
 413778 CODE+RETURN
 413793 display
 413801 monthly
 413809 screen,
 413820 FILE
 413828 finish.
 413839 Type
 413844 number.
 413860 display
 413872 designated
 413883 month.
 413893 Type
 413898 search
 413905 word(s).
 413922 start
 413928 search.
 413946 holiday(s), SPACE again to clear
 413989 exit.
 413998 Press
 414004 RETURN
 414014 display
 414026 daily
 414032 screen.
 414044 start
 414050 printing,
 414060 press
 414066 PRINT.
 414076 Printing....
 414129 enter, CANCEL to finish.
 414160 enter, GOTO to insert in text.  Press CANCEL to finish.
 414219 Press CODE+Q to change 10 key mode ON/OFF, CODE+R to enter +/-.
 414303 time.
 414312 Type
 414317 number.
 414337 time.
 414362 alarm.
 414372 Type
 414377 number.
 414397 alarm.
 414441 Alarm time.  @SCHEDULER`  
 414495 Alarm time.
 414509 @CLOCK`
 414574  Press CANCEL to exit.
 414675 Alarm time. @THINGS TO DO`
 414789 Press
 414800 select
 414807 your
 414812 local
 414818 city.
 414832 set.
 414840 Select
 414847 your
 414852 local
 414858 city
 414867 press
 414873 RETURN
 414883 set.
 414891 Press
 414897 MENU
 414905 view
 414910 functions.
 414924 Move
 414929 cursor
 414939 city
 414948 want
 414956 change
 414967 press
 414973 RETURN.
 414984 Press
 414995 select
 415004 city
 415009 name.
 415023 set.
 415031 Press
 415037 SPACE
 415046 change
 415053 setting.
 415070 set.
 415078 Select
 415087 city
 415092 name
 415101 press
 415107 RETURN
 415117 set.
 415136 LOCAL
 415142 CITY
 415152 CITY
 415157 LIST
 415168 WORLD
 415174 TIME
 415188 CITY
 415193 SETTING
 415207 CITY
 415212 NAME
 415222 COUNTRY
 415235 TIME
 415240 DIFFERENCE:
 415255 D.S.T.
 415269 STANDARD
 415283 SUMMER
 415293 D.S.T.
 415307 STANDARD
 415321 SUMMER
 415331 Type
 415340 number
 415350 press
 415356 GOTO
 415364 display
 415372 ADDRESSBOOK.
 415393 set.
 415405 cursor
 415415 select
 415426 number
 415443 exit.
 415452 Select
 415461 file
 415479 execute.
 415489 Press
 415495 CANCEL
 415505 cancel.
 415516 Sending
 415524 page
 415533 1...
 415539 Press
 415545 CANCEL
 415555 abort.
 415577 set.
 415585 Type
 415590 STATION
 415610 set.
 415625 change
 415632 setting.
 415648 communication
 415662 completed.
 415674 Press
 415680 FILE
 415688 exit.
 415697 Awaiting
 415706 redial.
 415721 communication
 415735 canceled.
 415748 Select
 415766 entry.
 415776 Select
 415794 deleting.
 415807 Delete
 415818 data?
 415834 (no).
 415847 clear?
 415864 (no).
 415873 Type
 415882 name
 415894 person
 415904 receive
 415912 fax.
 415925 set.
 415933 Type
 415942 company
 415950 name/address
 415970 destination.
 415991 set.
 415999 Type
 416008 comments.
 416026 set.
 416034 Type
 416039 your
 416044 name.
 416058 set.
 416066 Type
 416071 your
 416076 company
 416084 name/address.
 416106 set.
 416114 Type
 416119 your
 416124 telephone
 416134 number.
 416150 set.
 416158 Type
 416163 your
 416172 number.
 416188 set.
 416196 Type
 416205 name/company
 416225 destination.
 416246 set.
 416255 Emulating TTY terminal.  Press MENU to use options.
 416310 Press CANCEL to escape from LAST PAGE.
 416352 Press CODE+R to record log in data.
 416391 Press GOTO to display ADDRESSBOOK.
 416429 Sending dial command string.  Press CANCEL to abort.
 416488 change setting and
 416509  to finish.
 416524 Type a filename and
 416546  to receive.
 416562 Sending
 416573 Receiving
 416586 WPT.  Press CANCEL to abort.
 416618 WPT.  Press FILE to finish or cancel.
 416662  to close and save, CODE+D to delete.
 416703 Memory full.  
 416720  to close and save, CODE+D to delete.
 416761 Use cursor to select telephone number and
 416805  to exit.
 416818 Disconnecting?  
 416843 (no).
 416852 Enter hexadecimal value and
 416882  to send.
 416895 Erase current setting and load file from disk? 
 416951 (no).
 416960 Executing auto log-in.  Press
 416992  to abort.
 417006 Recording log in data....press CODE+R to stop recording log in data.
 417078 Press SPACE to change setting and
 417114  to dial.
 417127 Change current setting to default setting?  
 417180 (no).
 417189 Memory full.  Press CODE+R to stop recording log in data.
 417250 Type telephone number
 417278 Type ID number
 417299 Type PASSWORD
 417319 Type telephone number and
 417347  to dial.
 417360 OK to begin auto dial/auto log-in?  
 417405 (no).
 417417 SEND
 417434 FILE
 417439 NAME
 417447 SEND:
 417457 (ADDRESSBOOK)
 417505 DIAL
 417510 MODE
 417518 RESOLUTION
 417532 STANDARD
 417543 FINE
 417553 STATION
 417570 TONE
 417580 PULSE
 417589 SENDING
 417597 PAGE
 417607 TRANSMISSION
 417620 COMPLETED
 417630 TOTAL
 417636 PAGES
 417648 STANDARD
 417660 @@ PHONE NUMBER ``
 417682 VIEW LAST PAGE
 417699 DIAL MODE
 417712 BIT PER SECOND
 417730 BIT PER SECOND
 417748 PARITY
 417758 DATA BITS
 417771 STOP BITS
 417784 XON/XOFF CONTROL
 417804 SIGNAL LINE CONTROL
 417827 LOCAL ECHO
 417841 AUTO LINEFEED
 417858 AUTO LINEFEED (SEND)
 417882 CODE TABLE
 417910 1200
 417918 2400
 417926 4800
 417934 9600
 417955 EVEN
 417963 MARK
 418043 NONE
 418058 7BIT
 418066 8BIT
 418074 SENT:
 418083 TOTAL RETRIES:
 418101 FILENAME:
 418114 RECEIVED:
 418127 FREE AREA:
 418145 NUMBER:
 418157 PASSWORD : 
 418172 SPACE
 418192 BATTERY
 418214 MemLoss
 418259 BACKLIT
 418293 BACKLIT
 418378 TONE
 418386 PULSE
 418395 VALUE:
 418405 .INF
 418416 @@ PHONE NUMBER ``
 418441 DIAL MODE
 418454 TONE
 418462 PULSE
 418474 @@ INFORMATION SET UP ``
 418505 PHONE NUMBER: 
 418524 LOG-IN DATA:
 418544 EXIST
 418553 NONE
 418564 @@ COMPUSERVE LOGIN FILE ``
 418598 CHECK
 418607 TOPIC
 418616 TO DO
 418625 DEADLINE
 418637 DATE:
 418646 TOPIC:
 418656 TO DO:
 418666 DEADLINE  :
 418681 ALARM TIME:
 418696 CHECK DATE:
 418711   /  /    
 418737 RECORD:
 418748  RECORD:
 418760 USER ID: 
 418773 PASSWORD: 
 418787 RECORD LOG-IN DATA
 418822 DIAL MODE
 418838 @@ CURRENT SETTING ``
 418866 AUTO
 418871 REDIAL
 418897 COVER
 418903 PAGE
 418927 SEND
 418932 TRANSMITTER
 418944 DATA
 418968 NAME:
 418977 COMPANY:
 418989 NOTE:
 418998 YOUR
 419003 NAME:
 419012 YOUR
 419017 COMPANY:
 419029 YOUR
 419038 NUMBER:
 419049 YOUR
 419058 NUMBER:
 419069 SUBJECT:
 419084 SEND
 419095 TO...
 419110 SEND
 419121 FROM...
 419148 LIST
 419187 NUMBER:
 419198 NAME:
 419207 COMPANY:
 419219 LETTERHEAD
 419253 DTMF
 419258 TRANSMIT
 419267 LEVEL
 419284 TRANSMIT
 419293 LEVEL
 419424 anata
 419433 CALL
 419438 shita
 419448 bangou
 419458 genzai
 419465 tsukawarete
 419477 orimasen.
 419503 Memory
 419510 full.
 419519 File
 419524 memory
 419531 full.
 419544 many
 419549 files
 419558 disk
 419569 Disk
 419577 write
 419583 protected.  Release the protection and
 419624  to retry.
 419638 Disk
 419646 full
 419657 Unidentified
 419670 disk
 419675 error
 419687 Insert
 419694 disk
 419705 Unable
 419715 read
 419720 disk.
 419733 many
 419738 files
 419747 memory.
 419760 spec.
 419774 enough
 419781 memory
 419788 remaining.
 419802 Filename exists.  
 419823  to overwrite or type new name
 419864 down.
 419877 down.
 419886 Check
 419892 disk.
 419901 Filename
 419910 exists.
 419919 Type
 419928 filename
 419947 many
 419952 format
 419959 settings.
 419975 text
 419980 area.
 419993 margin
 420004 short.
 420019 continue
 420038 Word(s)
 420050 found.
 420062 disk.
 420070 Insert
 420077 source
 420084 disk
 420097 disk.
 420105 Insert
 420112 destination
 420124 disk
 420135 Initialize?  
 420157 (no).
 420166 Battery low.  Can't use Disk Drive.  Disk access not completed.
 420235 keyboard.
 420249 Unable to delete the specialized file.  Press CANCEL to exit.
 420314 Program
 420322 files
 420335 exist.
 420347 disk
 420359 Check
 420365 card.
 420378 many
 420383 files
 420392 card.
 420413 MEMORY
 420420 INDEX
 420433 Card
 420438 memory
 420448 full.
 420469 MEMORY
 420476 INDEX
 420494 `````
 420504 (06)
 420516 sync
 420525 come.
 420539 `````
 420549 (07)
 420558 start
 420564 mark
 420573 come.
 420587 `````
 420597 (08)
 420609 sync
 420614 n.c.
 420622 both
 420627 spot
 420632 erase.
 420647 `````
 420657 (09)
 420666 data
 420671 sync
 420680 come.
 420694 `````
 420704 (0A)
 420720 sector
 420727 n.c.
 420732 ,verify
 420740 error.
 420755 `````
 420765 (0B)
 420778 data
 420783 exchange.
 420801 `````
 420811 (0C)
 420820 special
 420828 code
 420833 exchange.
 420851 `````
 420861 (0D)
 420872 bites
 420878 data
 420887 error.
 420902 `````
 420912 (0E)
 420917 measure
 420925 error.
 420940 `````
 420950 (0F)
 420959 logical
 420967 sector
 420974 number.
 420990 `````
 421000 (4E)
 421009 FAT.
 421022 `````
 421032 (45)
 421041 supported
 421051 media
 421057 descriptor.
 421072 Only
 421077 DOCUMENT
 421086 file
 421098 selected.
 421111 Only
 421116 .MRG
 421121 file
 421133 selected.
 421146 Only
 421151 .DTB
 421156 file
 421168 selected.
 421186 `````
 421196 (01)
 421201 disk
 421210 inserted.
 421228 `````
 421238 (02)
 421243 disk
 421248 changed.
 421265 `````
 421275 (03)
 421280 write
 421286 protected.
 421305 `````
 421315 (04)
 421323 motor
 421333 fast.
 421347 `````
 421357 (05)
 421365 motor
 421375 slow.
 421384 Only
 421389 APPLICATION
 421401 file
 421413 selected.
 421426 Unable to delete the specialized disk.  Press CANCEL to exit.
 421491 Invalid file type.  Press
 421519  to exit.
 421532 Can't select the file from this index.
 421574 File size is too big to convert.  Press
 421616  to exit.
 421629 Memory
 421636 full.
 421643 Press
 421649 CANCEL
 421659 exit.
 421672 many
 421677 files
 421686 memory.
 421695 Press
 421701 CANCEL
 421711 exit.
 421720 AC adapter or battery does not exist.  Press
 421767  to display MAIN MENU.
 421793 Backup battery low. Can't use QUICK CHARGE. Press
 421845  to display MAIN MENU.
 421871 You can not load more than one file with a .DTB, .MRG, .TDL or .CPF extension.
 421953 Incorrect format type or damaged diskette.
 421997 Press CANCEL.
 422016 page
 422022 number.
 422031 Press
 422043 exit.
 422052 Check
 422058 printer.
 422072 setting.
 422091 format.
 422101 Press
 422113 exit.
 422126 wide.
 422133 Press
 422145 exit.
 422166 Cover
 422172 open.
 422190 Unable
 422200 print.
 422208 Press
 422220 exit
 422234 print.
 422288 Page
 422293 end.
 422299 Press
 422305 CORRECT
 422316 type
 422325 more
 422330 line.
 422343 many
 422348 records.
 422358 Delete checked record(s)?  
 422394 (no).
 422403 Too many records.  Delete unnecessary record(s).
 422455 Alarm already set at this time.  Select different time.
 422514 Insert
 422521 disk
 422526 with
 422534 file
 422543 created
 422560 least
 422570 selection
 422580 must
 422599 word
 422604 already
 422612 exists.
 422623 User
 422628 dictionary
 422639 full.
 422648 Invalid
 422660 dictionary.
 422675 Synonym
 422687 found.
 422697 Insert
 422704 Thesaurus
 422714 disk
 422725 Power
 422739 insert
 422746 Thesaurus
 422756 card.
 422768 card
 422773 installed.
 422785 Turn
 422794 power
 422808 install
 422820 card
 422828 press
 422834 CANCEL.
 422849 enough
 422856 memory
 422863 remaining.
 422875 Data
 422883 truncated.
 422900 card!
 422909 Phrase
 422916 memory
 422923 full.
 422932 Phrase
 422939 name
 422944 already
 422952 exists.
 422965 double
 422972 period
 422986 allowed.
 423000 period
 423014 allowed
 423027 first
 423033 character.
 423047 Insert
 423054 disk
 423059 with
 423064 abbreviated
 423076 phrase
 423083 file
 423092 created
 423112 before
 423131 after
 423149 after
 423161 Capitalization
 423176 error.
 423189 period(s).
 423213 "!".
 423227 before
 423236 comma.
 423252 after
 423260 comma.
 423275 space
 423281 after
 423289 comma.
 423302 comma(s).
 423321 before
 423330 colon.
 423346 after
 423354 colon.
 423369 space
 423375 after
 423383 colon.
 423399 before
 423408 semicolon.
 423428 after
 423436 semicolon.
 423455 space
 423461 after
 423469 semicolon.
 423489 before
 423498 dash
 423506 hyphen.
 423523 after
 423531 dash
 423539 hyphen.
 423556 before
 423573 bracket.
 423591 after
 423607 bracket.
 423622 punctuation
 423634 mark(s)
 423642 after
 423657 punctuation
 423669 mark(s)
 423677 inside
 423704 after
 423713 open
 423724 bracket.
 423739 comma(s).
 423757 close
 423767 bracket,
 423791 open
 423800 bracket,
 423821 open
 423832 bracket.
 423847 close
 423859 bracket.
 423873 ellipsis.
 423901 after
 423910 open
 423921 bracket.
 423933 Counting
 423942 error.
 423954 many
 423959 unique
 423966 words.
 423976 Invalid
 423988 counting.
 424001 Counting
 424010 error.
 424018 Maximum
 424026 count
 424035 255.
 424043 Remove
 424050 cutsheet
 424059 feeder
 424073 Record(s)
 424087 found.
 424101 many
 424106 labels.
 424117 Total
 424123 record
 424137 long.
 424144 Shorten
 424152 some
 424157 label
 424163 length.
 424178 many
 424183 records.
 424195 Incorrect
 424205 setting.
 424215 Please
 424226 another
 424234 position.
 424251 wide
 424259 print.
 424269 Last
 424274 record.
 424285 Incorrect
 424295 password.
 424306 Press
 424319 Schedule
 424332 found.
 424342 Date
 424347 full.
 424354 Delete
 424365 past?
 424381 (no).
 424390 Date
 424395 full.
 424402 Delete
 424409 unnecessary
 424421 daily
 424427 data.
 424436 Holiday
 424444 full.
 424451 Delete
 424462 past?
 424478 (no).
 424487 Holiday
 424495 full.
 424502 Delete
 424509 unnecessary
 424521 setting(s).
 424536 Alarm
 424542 full.
 424549 Delete
 424560 past?
 424576 (no).
 424585 Alarm
 424591 full.
 424598 Delete
 424605 unnecessary
 424617 setting(s).
 424632 Alarm setting(s) not found.
 424663 Delete all alarm setting(s)?  
 424702 (no).
 424711 Please
 424718 connect
 424730 Brother
 424738 Missing
 424746 Link
 424751 cable
 424760 your
 424765 Brother
 424773 fax.
 424785 communication
 424799 error!
 424807 Check
 424817 ADDRESSBOOK.
 424837 communication
 424851 error!
 424861 Last
 424870 transfer
 424879 failed.
 424890 ADDRESSBOOK
 424909 data.
 424918 ADDRESSBOOK
 424941 number
 424948 column.
 424963 Line
 424971 busy.
 424983 response
 424992 from
 424997 remote
 425015 telephone
 425025 circuit
 425036 disconnected.
 425053 Line
 425062 interrupted.
 425082 telephone
 425092 circuit
 425103 disconnected.
 425123 facsimile
 425133 transmission.
 425150 Invalid
 425162 number.
 425177 many
 425182 selected
 425195 numbers.
 425207 Select
 425222 number.
 425241 make
 425250 transaction
 425262 log.
 425274 number
 425281 already
 425289 contains
 425298 data.
 425305 Overwrite?
 425326 (no).
 425339 machine
 425347 needs
 425353 assistance.
 425366 Please
 425373 check.
 425383 Line
 425391 busy
 425399 line
 425408 interrupted.
 425425 Cannot send data.
 425446 Screen buffer empty.
 425470 No files to send.
 425491 Completed.
 425505 Canceled.
 425518 Canceled by remote system.
 425548 Cannot use XMODEM in 7 data bits setting.
 425593 Cannot send text file in 7 data bits setting.
 425642 Cannot receive text file in 7 data bits setting.
 425694 ADDRESSBOOK has no TELEPHONE number column.
 425741 Error during auto log-in!!
 425771 Change current setting?  
 425805 (no).
 425814 CompuServe file already exists on disk.  
 425858  to overwrite.
 425876 Incorrect setting.


 430832 HELP
 430838 Type
 430847 corresponding
 430861 letter
 430872 help
 430877 with
 430887 following
 430897 functions.
 430919   Addressbook
 430945   BOOKMAN
 430966   Calculator
 430991   Fax
 431007   Memory Index
 431032   Clock
 431052   Line by Line
 431077   Main Menu
 431099   File Management
 431127   Communication
 431153   Printer set up
 431180   Spreadsheet
 431207   Scheduler/Calendar
 431238   Things To Do List
 431268   User dictionary 
 431297   Abbreviation
 431322   Word Processing 
 431348 @@ 1. MAIN MENU ``
 431372 main
 431377 menu
 431382 screen
 431389 will
 431394 appear
 431401 when
 431411 power
 431420 turned
 431440 activate
 431453 item
 431461 moving
 431472 block
 431478 cursor
 431485 onto
 431495 item
 431504 pressing
 431513 RETURN,
 431527 simply
 431535 pressing
 431548 item's
 431555 corresponding
 431569 number
 431576  (0-9) or alphabet(A-B).
 431606 SHORT
 431620 SELF
 431625 DEMO
 431633 CODE+D
 431641 CALCULATOR
 431654 CODE+S
 431662 DISK
 431667 APPLICATION
 431682 CODE+Q
 431694 FUNCTION
 431703 EXPLANATIONS
 431720 RETURN   Activates
 431743 highlighted
 431755 item.
 431774 WORD
 431779 PROCESSING
 431797 SHORT
 431811 BOLD
 431820 CODE+B
 431829 UNDERLINE
 431842 CODE+N
 431850 CENTERING
 431863 CODE+F
 431880 CODE+R
 431888 COPY
 431897 CODE+C
 431906 MOVE
 431915 CODE+E
 431925 DELETE
 431936 CODE+D
 431945 BOOKMAN
 431958 CODE+/
 431968 SUPER
 431978 CODE+,
 431995 CODE+.
 432005 DELETE
 432016 CODE+D
 432025 SUPER
 432035 CODE+,
 432053 CODE+.
 432061 CHANGE
 432068 SCREEN
 432079 CODE+Q
 432087 PERMANENT
 432097 BACKSPACE
 432109 CODE+BS
 432122 FUNCTION
 432131 EXPLANATIONS
 432148 ABBR
 432154    Recalls
 432169 abbreviated
 432181 phrase
 432191 data.
 432199 FILE
 432206 Stores
 432217 document
 432226 appearing
 432246 current
 432254 screen
 432268 memory,
 432279 then
 432284 displays
 432297 memory
 432304 index.
 432313 GOTO
 432320 Moves
 432330 cursor
 432337 immediately
 432359 desired
 432367 page
 432379 document.
 432391 SPELL
 432399 Activates
 432413 selected
 432422 spell
 432428 check
 432437 functions.
 432454 CLR  Cancels
 432471 paragraph
 432481 indent
 432495 moves
 432508 left
 432513 margin
 432530 next
 432535 line.
 432543 INSERT   Switches
 432565 insert
 432572 function
 432591 off.
 432598 LAYOUT   Clarifies
 432621 relationship
 432634 between
 432645 what
 432665 screen
 432679 what
 432684 will
 432692 printed
 432703 paper.
 432713 Also
 432718 shows
 432732 remaining
 432745 memory.
 432754 Pressing
 432765 allows
 432782 display
 432794 text
 432802 newspaper
 432815 fashion
 432823 with
 432832 columns
 432840 across
 432854 page.
 432868    Inserts
 432879 five
 432884 spaces
 432896 indent
 432908 paragraph,
 432923 example.
 432936 CODE   Used
 432951 mark
 432958 location
 432975 document
 432984 where
 432990 data
 432995 will
 433006 automatically
 433020 inserted
 433029 from
 433040 addressbook
 433052 file.
 433060 JUST
 433067 Switches
 433080 right
 433086 justification
 433103 function
 433119 off.
 433132    Temporarily
 433147 shifts
 433158 left
 433163 margin
 433180 next
 433189 position.
 433201 PRINT
 433207    Prints
 433221 current
 433229 page.
 433237 TEMP
 433243    Allows
 433260 make
 433265 multiple
 433274 copies
 433289 block
 433298 text
 433303 between
 433311 files
 433320 through
 433332 creation
 433349 temporary
 433359 file.
 433366 This
 433371 feature
 433385 also
 433390 available
 433408 DUAL
 433413 SCREEN
 433423 function.
 433446 MEMORY
 433453 INDEX
 433466 SHORT
 433480 COPY
 433489 CODE+C
 433498 DELETE
 433509 CODE+D
 433516  RENAME
 433526 : CODE+R
 433537 LOAD
 433544 : CODE+L
 433553  SAVE
 433561 : CODE+S
 433575 FUNCTION
 433584 EXPLANATIONS
 433600  FILE     Allows you to exit from this mode.
 433646  CANCEL   Allows you to exit from this mode.
 433692  PRINT    Prints the file highlighted by the
 433740 cursor.
 433761 ABBREVIATED
 433773 PHRASE
 433788 'ABBREVIATED
 433801 PHRASE'
 433809 function
 433821 used
 433830 store
 433836 frequently
 433847 used
 433852 words
 433861 phrases.
 433871 Once
 433880 store
 433886 these
 433892 phrases
 433907 memory,
 433916 they
 433928 recalled
 433937 into
 433942 your
 433947 files.
 433955 When
 433961 storing
 433971 phrase,
 433983 first
 433989 enter
 433999 identifying
 434011 label,
 434018 such
 434026 "SY"
 434036 Sincerely
 434046 yours,
 434053 then
 434058 type
 434067 entire
 434075 phrase.
 434084 When
 434089 recalling
 434103 phrase
 434110 into
 434118 file,
 434124 type
 434133 identifying
 434145 label
 434155 press
 434162 "ABBR".
 434175 entire
 434182 phrase
 434189 will
 434194 appear
 434204  the screen.
 434222 SHORT
 434236 DELETE
 434247 CODE+D
 434256 LOAD
 434265 CODE+L
 434273 SAVE
 434282 CODE+S
 434294 FUNCTION
 434303 EXPLANATIONS
 434320 FILE
 434326    Allows
 434343 exit
 434348 from
 434353 this
 434358 mode.
 434366 INSERT   Switches
 434388 insert
 434395 function
 434414 off.
 434421 PRINT
 434427    Prints
 434441 Abbreviated
 434453 Phrases
 434468 have
 434473 stored.
 434489    Moves
 434502 cursor
 434519 Abbreviated
 434531 Phrase
 434538 data
 434543 entry
 434549 area.
 434562 @@ 5. USER DICTIONARY ``
 434592 'USER
 434598 DICTIONARY'
 434613 used
 434621 store
 434628 frequently
 434639 typed
 434645 words
 434651 that
 434664 found
 434678 built-in
 434687 dictionary,
 434699 such
 434707 proper
 434714  names and specialized terms.
 434749 SHORT
 434763 DELETE
 434774 CODE+D
 434783 LOAD
 434792 CODE+L
 434800 SAVE
 434809 CODE+S
 434821 FUNCTION
 434830 EXPLANATIONS
 434847 FILE
 434856 Allows
 434870 exit
 434875 from
 434880 this
 434885 mode.
 434893 GOTO
 434899    Moves
 434915 first
 434921 word
 434926 beginning
 434939 with
 434948 specified
 434958 character.
 434971 INSERT   Switches
 434993 insert
 435000 function
 435019 off.
 435030 @@ 6. SPREADSHEET ``
 435057 'SPREADSHEET'
 435074 used
 435082 deal
 435087 with
 435093 bookkeeping
 435105 records
 435117 other
 435123 numerical
 435138 columnar
 435147 material.
 435162 program
 435170 does
 435176 arithmetic
 435187 (adding
 435198 columns,
 435211 example),
 435221  not you.  Spreadsheet files are saved to
 435263  disk, not internal memory.
 435291  For further help with Spreadsheet applica-
 435335  tions, start Spreadsheet program and press
 435379  CODE+H for help.
 435410 ADDRESSBOOK
 435429 Address
 435437 file
 435445 created
 435456 store
 435462 various
 435471 information,
 435484 such
 435492 names
 435502 addresses.
 435514 That
 435519 information
 435538 merged
 435545 with
 435553 standard
 435562 document
 435571 during
 435578 printing
 435591 personalize
 435603 your
 435608 files.
 435620 SHORT
 435634 COPY
 435643 CODE+C
 435652 DELETE
 435663 CODE+D
 435671 MOVE
 435680 CODE+E
 435689 SORT
 435698 CODE+O
 435706 SELECT
 435717 CODE+T
 435726 INSERT
 435737 CODE+I
 435744  NEW RECORD : CODE+N
 435767 LOAD
 435774 : CODE+L
 435783  SAVE
 435791 : CODE+S
 435805 FUNCTION
 435814 EXPLANATIONS
 435831 FILE
 435837    Stores
 435851 Addressbook
 435863 appearing
 435883 current
 435891 screen
 435901 memory,
 435912 then
 435917 displays
 435930 main
 435935 menu.
 435943 INSERT   Switches
 435965 insert
 435972 function
 435991 off.
 435997  PRINT    Prints the selected names and
 436040 addresses on labels or prints the
 436077 list of records in the addressbook
 436115 file.
 436123 SPACE
 436129    Switches
 436147 mark
 436159 off.
 436167 Only
 436176 records
 436184 with
 436195 mark
 436203 displayed
 436213 will
 436221 printed.
 436238    Moves
 436251 cursor
 436265 next
 436270 label.
 436285    Lengthens
 436302 column.
 436318    Shortens
 436334 column.
 436371 'FAX'
 436377 function
 436389 used
 436397 send
 436402 files
 436410  which you created in the Word Processing
 436454  mode to a facsimile machine through the
 436497  built in FAX modem.
 436527 SHORT
 436543 DELETE
 436554 CODE+D
 436563 LOAD
 436572 CODE+L
 436582 ENTRY
 436592 CODE+E
 436608 FUNCTION
 436617 EXPLANATIONS
 436637 FILE
 436646 Allows
 436660 exit
 436665 from
 436670 this
 436675 mode.
 436687 GOTO
 436696 Displays
 436709 addressbook
 436721 file
 436738 screen.
 436755 select
 436771 send
 436784 number,
 436792 name
 436806 company
 436817 your
 436822 addressbook
 436834 file
 436855 screen.
 436869 RETURN
 436878 Sets
 436887 current
 436895 data
 436904 goes
 436921 next
 436926 screen
 436936 starts
 436943 sending
 436956 the file to the facsimile machine.
 436997 SPACE
 437006 Changes
 437018 parameter
 437040 current
 437048 cursor
 437055 position.
 437080 COMMUNICATION
 437102 'COMMUNICATION'
 437118 function
 437130 used
 437138  transfer the stored word processing files,
 437182  back and forth between this machine and a
 437225  personal computer.  You are able to easily
 437269  access on-line services, such as CompuServe.
 437315  Pressing MENU allows you to activate the
 437357  following functions.
 437382 COMPUSERVE
 437393 AUTO
 437398 LOG-IN
 437408 VIEW
 437413 LAST
 437418 PAGE
 437426 INPUT/ACTIVATE
 437445 DIAL
 437450 COMMAND
 437461 SEND/RECEIVE
 437478 ASCII
 437484 FILES
 437493 SEND/RECEIVE
 437513 TEXT
 437518 FILES
 437529 SHORT
 437542  COMPUSERVE       : CODE+C
 437569  VIEW LAST PAGE   : CODE+PRE S
 437600  DIAL             : CODE+D
 437627  SET UP           : CODE+T
 437654  INFORMATION LOAD : CODE+L
 437681  INFORMATION SAVE : CODE+S
 437713 FUNCTION
 437722 EXPLANATIONS
 437739 FILE
 437745    Allows
 437762 exit
 437767 from
 437772 this
 437777 mode.
 437784  CompuServe
 437796  is a registered trademark of
 437826  CompuServe Incorporated.
>>>>>>>> 437868 BOOKMAN
>>>>>>>> 437885 Franklin
>>>>>>>> 437894 BOOKMAN
>>>>>>>> 437903 card
>>>>>>>> 437908 must
>>>>>>>> 437916 installed
>>>>>>>> 437928  to use the BOOKMAN
>>>>>>>> 437949 feature.
>>>>>>>> 437960  The 'BOOKMAN
>>>>>>>> 437974 ' function is used to start up
>>>>>>>> 438007  and refer to information stored on the
>>>>>>>> 438049  Franklin BOOKMAN
>>>>>>>> 438068 cards.
 438084 FUNCTION
 438093 EXPLANATIONS
 438113 FILE
 438120 Allows
 438134 exit
 438139 from
 438144 this
 438149 mode.
 438161 HELP
 438168 Displays
 438181 HELP
 438186 menu
 438200 BOOKMAN
 438228 CALCULATOR
 438257 CALCULATOR
 438276 'CALCULATOR'
 438289 works
 438295 like
 438305 digits
 438313 hand-held
 438323 calculator.
 438344 enter
 438350 this
 438356 mode
 438361 from
 438370 main
 438375 menu
 438380 screen
 438398 input/edit
 438409 screen
 438423 word
 438428 processing
 438440 mode.
 438458 this
 438463 function
 438479 word
 438485 processing
 438496 mode,
 438506 answer
 438521 calculation
 438540 transferred
 438559 word
 438565 processing
 438576 file.
 438587 SHORT
 438605 CLEAR
 438618 CLEAR
 438630  NUM LOCK   : CODE+Q
 438656 FUNCTION
 438665 EXPLANATIONS
 438682 CANCEL   Allows
 438705 exit
 438710 from
 438715 this
 438720 mode.
 438728 GOTO
 438734    Allows
 438751 move
 438760 answer
 438777 calculation
 438796 text
 438811 current
 438819 screen.
 438829 +-*/
 438835    Calculations
 438854 add,
 438859 subtract,
 438872 multiply,
 438885 divide
 438892 will
 438903 activated.
 438920    Displays
 438936 answer
 438953 calculation
 438972 screen.
 438981  RETURN   Displays the answer of the
 439021 calculation on the screen.
 439064 SCHEDULER/CALENDAR
 439101 SCHEDULER/CALENDAR
 439128 'SCHEDULER/CALENDAR'
 439152 used
 439160 store
 439167 your
 439172 monthly
 439184 daily
 439190 schedule.
 439205 alarm
 439212 feature
 439220 keeps
 439226 everyone
 439238 schedule.
 439254 built-in
 439263 calendar
 439272 function
 439281 displays
 439295 month
 439301 calendar.
 439320 between
 439328 January
 439340 1940
 439349 December
 439362 2099
 439374 viewed
 439385 printed.
 439399 SHORT
 439413 CALENDAR
 439426 CODE+C
 439435 DELETE
 439446 CODE+D
 439454 GOTO
 439463 CODE+G
 439472 HOLIDAY
 439484 CODE+O
 439491  MONTHLY
 439502 : CODE+M
 439513 LOAD
 439520 : CODE+L
 439529  SAVE
 439537 : CODE+S
 439548 SCREEN
 439557 : CODE+Q
 439571 FUNCTION
 439580 EXPLANATIONS
 439597 CODE+A   Pressing
 439615 CODE+A
 439629 daily
 439636 (ALARM)
 439645 screen
 439652 allows
 439674 alarm
 439683 time.  The "
 439696 " mark appears if
 439717 alarm
 439726 set.
 439733 CODE+Q   Allows
 439756 select
 439767 range
 439779 hours
 439788 daily
 439794 screen.
 439804 FILE
 439810    Stores
 439824 scheduler
 439834 data
 439842 appearing
 439859 current
 439867 screen
 439884 memory,
 439892 then
 439897 displays
 439913 main
 439918 menu.
 439926 INSERT   Switches
 439948 insert
 439955 function
 439974 off.
 439980  PRINT    Prints the data appearing on the
 440026 current screen.
 440044 NEXT
 440049 S   Displays
 440066 next
 440082 next
 440090 month.
 440105    Displays
 440121 previous
 440144 previous
 440153 month.
 440162 RETURN   Moves
 440181 cursor
 440195 next
 440200 line
 440215 daily
 440221 screen
 440231 recalls
 440246 daily
 440252 screen
 440266 cursor
 440276 position
 440292 monthly
 440300 screen.
 440317 @@ 13. THINGS TO DO LIST ``
 440353 @@ 12. THINGS TO DO LIST ``
 440381  This mode allows you to create a file
 440420  containing a list of "Things To Do".  You
 440463  may use this list to keep yourself informed
 440508  of important items that need completion.
 440550  This function allows you to check off
 440589  completed items, set alarms for important
 440632  items and prioritize your list by deadlines.
 440683 SHORT
 440696  NEW RECORD : CODE+N    DELETE     : CODE+D
 440740  SORT       : CODE+O    SCHEDULER  : CODE+C
 440784  LOAD       : CODE+L    SAVE       : CODE+S
 440833 FUNCTION
 440842 EXPLANATIONS
 440858  FILE     Stores the things to do list
 440900 appearing on the current screen to
 440938 the memory, then displays the main
 440976 menu.
 440983  INSERT   Switches the insert function on
 441028 and off.
 441038  PRINT    Prints the data on the current
 441082 screen.
 441106 CLOCK
 441130 CLOCK
 441144 'CLOCK'
 441155 used
 441171 date,
 441177 time
 441187 alarm
 441193 time.
 441204 FUNCTION
 441213 EXPLANATIONS
 441230 FILE
 441236    Allows
 441253 exit
 441258 from
 441263 this
 441268 mode.
 441275  RETURN   To finish setting.
 441306 SPACE
 441312    Switches
 441328 alarm
 441355 alarm
 441361 setting
 441369 screen.
 441381 time
 441389 setting
 441397 screen,
 441405 pressing
 441414 space
 441427 changes
 441439 order
 441448 "date",
 441459 "month"
 441471 "year"
 441489 indication
 441500 method
 441510 "hour".
 441527 @@ 15. FILE MANAGEMENT ``
 441561 @@ 14. FILE MANAGEMENT ``
 441587  The File Management mode provides an index
 441631  of all files stored in the memory and on
 441673  Disk.  These indexes include files created
 441717  in all modes.  These indexes are called the
 441762  "Memory Index" and the "Disk Index".  When
 441806  these Indexes are displayed, you are able
 441849  to complete the following functions:
 441888  Copy Files, Delete Files, Rename Files,
 441929  Save Files to Disk, Load Files to Memory,
 441972  Convert Files, or Delete the entire Disk.
 442020 SHORT
 442033  COPY       : CODE+C    DELETE     : CODE+D
 442077  RENAME     : CODE+R    DISK       : CODE+K
 442121  LOAD       : CODE+L    SAVE       : CODE+S
 442170 FUNCTION
 442179 EXPLANATIONS
 442195  FILE     Allows you to exit from this mode,
 442243 then displays the main menu.
 442273  PRINT    Prints the list of files in the
 442318 current INDEX.
 442342 @@ 16. PRINTER SET UP ``
 442375 @@ 15. PRINTER SET UP ``
 442405 'PRINTER
 442425 used
 442441  printer emulation, printer size, quality,
 442484  interface(communication parameter) to print
 442529  out the files.
 442550 FUNCTION
 442559 EXPLANATIONS
 442576 CANCEL   Allows
 442599 escape
 442606 from
 442615 mode
 442627 return
 442641 main
 442646 menu
 442651 screen.
 442661 RETURN   Sets
 442675 your
 442680 selections
 442695 returns
 442713 main
 442718 menu
 442723 screen.
 442733 SPACE
 442739    Changes
 442754 parameter
 442774 current
 442782 cursor
 442789 position.
 443215 *.DTB
 443228 SCHEDULE.DTB
 
 459171   Press RETURN when done. 
 459198  Column
 459206  Width

 464714  Working.... 

 466046 SQUARE
 466053 SQRT
 466074 ROUND
 466080 COUNT
 466086 TSUM

 475258 *NEWFILE
 475319 SPREADSHEET INDEX
 475337 DISK INDEX

 475697  Initialize?  Press RETURN(yes) or CANCEL(no).
 475744  Delete all data on the disk?
 475774  Initializing disk.
 475881 .SPR
 475886 .WPT

 476130  Select a file and press RETURN.  Press FILE to display MAIN MENU.
 476212  Insert destination disk
 476258   Press Y(yes) or N(no).
 476308 ...please wait.

 476516  FILENAME:
 476534  and press RETURN.
 476560   Press RETURN.

 476921  Insert data disk.  Press RETURN to save, press CODE+D to abandon.

 478280  Copying completed.

 478375  Saving the file.
 478393  Copying the file.

 478636  Renaming the file.
 478769  Are you sure you want to delete?
 478803  Deleting the file.

 479165  Reading disk directory.

 479392 REMAIN:

 481500  Type filename
 481530  Type new filename
 481564  Filename exists.  Press RETURN to overwrite or type new name
 481641  Filename exists.  Type new filename

 482005  Select the format type.  Press 1 for Double density or 2 for High density.
 482115  Battery low.  Can't use Disk Drive.

 483481  Mark range to be moved.
 483506  Move cancelled.  Range exceeds boundary of spreadsheet.
 483731  Mark range to be copied.
 483757  Copy cancelled.  Range exceeds boundary of spreadsheet.
 483814  Copy incomplete.  Memory full.

 483888  Move block cursor to destination and press RETURN.
 484148  Number of columns to insert
 484177  Number of rows to insert
 484374  Number of columns to delete
 484403  Number of rows to delete

 484474  Position block cursor.  Press RETURN when done.

 484651  Mark range to be cleared.
 484811  Source must be a single cell.
 484842  Mark range of destination.

 489888  Insert will result in data loss.  RETURN to insert or CANCEL to quit.

 490016  Working.... 

 490062  ROWS 
 490069  COLUMNS 

 491844  Mark range to be formatted.
 491959  Mark range to have bold removed.
 491993  Mark range to be bolded.
 492105  Mark range to have underlines removed.
 492145  Mark range to be underlined.

 492390  Use arrow keys to move to top, bottom, left or right. 
 492446  Working.... 

 492564  Mark columns for width change.

 492740  Mark range to be filled.
 492766  Starting value
 492782  Jumping value
 492797  Working.... 
 492938  Columns are already frozen. 
 492968  Move block cursor to right of columns to be frozen and press RETURN. 
 493039  Column freezing at that position is not allowed. 
 493090  At least one of the columns to be frozen must appear on screen. 
 493205  No columns to be released. 
 493234  Frozen columns have been released. 

 493705  Working.... 

 493996  Working.... 

 494349  New width 
 494363  Enter new column width and press RETURN. 
 494406  Minimum width is 1 character. 
 494438  Maximum width is 55 characters. 
 494472  Must be numeric. 

 494900  Press RETURN to fill the whole range. 
 494940  Ending value

 495747  Must be numeric. 

 495974  FIXED 
 495982  CURRENCY 
 495993  PERCENT 
 496003  NO DISPLAY 
 496042  Select number of decimal places. 
 496077  NO COMMAS 
 496089  COMMAS 
 496099  WIDTH 
 496107  FILL 
 496114  FREEZE 
 496123  RELEASE 
 496134  BOLD ON 
 496144  BOLD OFF 
 496156  UNDERLINE ON 
 496171  UNDERLINE OFF 
 496188  ZERO DISPLAY 
 496203  NO ZERO DISPLAY 
 496222  DISPLAY 
 496232  NO DISPLAY 
 
 499856  SORT 
 499863  SELECT 
 499872  SORT & SELECT 
 
 500551  Mark range to be sorted.
 500577  Enter column of primary sort key and press RETURN. 
 500630  Primary key
 500643  Enter column of secondary sort key and press RETURN. 
 500698  Secondary key
 500713  ASCENDING 
 500725  DESCENDING 
 500739  ALPHABETIC 
 500752  NUMERIC 

 501075  Invalid sort key.  Press any key and re-enter. 

 503919  Mark range to select from.

 504182  Select Column 
 504200  Enter the select column and press RETURN. 

 504482  EQUAL 
 504490  NOT EQUAL 
 504502  LESS 
 504509  GREATER 
 504519  BETWEEN 
 504529  NOT BETWEEN 
 504544  Equal to
 504554  Not Equal to
 504568  Less than
 504579  Greater than
 504593  Between option 
 504610  Not Between option 

 504818  Upper limit
 504831  Lower limit

 505186  Must be numeric. 

 509178  Insert paper and press RETURN. 
 509211  Set printer and press RETURN. 

 509451  Printing paused.  Press SPACE to continue. 
 509521  Printing.  Press SPACE to pause. 
 509657  Printer is not ready.  Press CANCEL to exit. 

 509901  Converting the file....please wait. 

 510019  Converting completed. 
 510043  Converting not complete. 

 517558 Brother
 517566 Super
 517572 PowerNote
 517592 Brother
 517600 Super
 517606 PowerNote
 517623 perfect
 517631 business,
 517641 school
 517656 Brother
 517664 Super
 517670 PowerNote
 517687 perfect
 517695 business,
 517705 school
 517716 traveling
 517726 companion.
 517745 1.44MB
 517752 disk
 517757 drive
 517763 allows
 517770 your
 517775 text
 517780 documents
 517802 compatible
 517813 with
 517818 PCs.
 517831 PC/WP
 517837 conversion
 517848 software
 517860 exchange
 517869 text
 517874 files
 517880 with
 517885 most
 517896 major
 517905 word
 517910 processing
 517921 packages
 517930 including
 517940 WordPerfect(R),
 517962 Microsoft
 517972 Word
 517977 TM,etc.
 517986 Super
 517992 PowerNote
 518002 spreadsheet
 518014 files
 518033 converted
 518046 Lotus(R)
 518055 1-2-3(R)
 518068 files.
 518084 Print
 518090 your
 518095 files
 518104 connecting
 518115 your
 518120 Super
 518126 PowerNote
 518147 Print
 518153 your
 518158 files
 518167 connecting
 518178 your
 518183 Super
 518189 PowerNote
 518210 virtually
 518224 laser,
 518246 matrix
 518256 printer.
 518275 Built
 518288 modem
 518298 data
 518303 modem.
 518320 Wireless
 518329 printing:
 518339 Print
 518345 without
 518357 cables
 518364 connected.
 518394 optional
 518403 battery
 518411 lets
 518424 Super
 518430 PowerNote
 518440 anywhere.
 518463 Super
 518469 PowerNote
 518483 designed
 518495 keep
 518504 organized.
 518521 following
 518535 some
 518547 many
 518552 available
 518562 applications:
 518580 WORD
 518585 PROCESSING
 518598 Word
 518603 processing
 518614 with
 518619 spell
 518625 checking,
 518635 thesaurus,
 518650 advanced
 518661 editing
 518669 features.
 518680 Transfer
 518689 documents
 518711 disk
 518719 connect
 518729 your
 518734 Super
 518740 PowerNote
 518753 virtually
 518767 laser,
 518791 matrix
 518801 printer
 518813 printing.
 518824 With
 518833 PC/WP
 518839 conversion
 518852 software
 518869 exchange
 518878 your
 518883 text
 518888 files
 518894 with
 518899 most
 518904 major
 518913 word
 518920 software
 518937 exchange
 518946 your
 518951 text
 518956 files
 518962 with
 518967 most
 518972 major
 518981 word
 518988 processing
 518999 software
 519008 packages.
 519024 COMMUNICATIONS
 519045 using
 519055 built-in
 519064 data
 519069 modem,
 519084 connect
 519095 on-line
 519105 services,
 519115 including
 519125 CompuServe(R).
 519141 Enjoy
 519149 variety
 519160 services
 519171 including
 519181 information
 519196 travel,
 519204 sports,
 519212 stock
 519218 reports,
 519227 consumer
 519238 reports,
 519247 games,
 519254 etc.
 519270 SPREADSHEETS
 519300 pre-formatted
 519314 spreadsheets
 519327 that
 519336 included
 519364 pre-formatted
 519378 spreadsheets
 519391 that
 519400 included
 519413 create
 519420 your
 519429 spreadsheets
 519446 business
 519458 home
 519463 use.
 519474 spreadsheets
 519494 converted
 519507 Lotus(R)
 519516 1-2-3(R)
 519529 files.
 519548 Automatically
 519562 send
 519567 your
 519572 text
 519577 files
 519592 machine.
 519602 Store
 519608 names
 519616 Automatically
 519630 send
 519635 your
 519640 text
 519645 files
 519660 machine.
 519670 Store
 519676 names
 519692 numbers
 519704 auto
 519709 dialing.
 519724 BOOKMAN(R)
 519742 reference
 519752 material,
 519762 install
 519781 BOOKMAN(R)
 519792 cards
 519808 reference
 519818 material,
 519828 install
 519847 BOOKMAN(R)
 519858 cards
 519870 view
 519879 information
 519894 your
 519899 Super
 519905 PowerNote.
 519923 product
 519931 names,
 519938 trademarks
 519952 registered
 519963 trademarks
 519974 referenced
 519986 herein
 520001 property
 520013 their
 520019 respective
 520030 companies.

 524800 COPYRIGHT (c) Houghton Mifflin Company Spelling Corrector 2.1.
 524863 This work is protected by the United States Copyright Laws as an
 524928 unpublished work and by Houghton Mifflin as trade secret information.
 524998 Solely for use in licensee software as permitted by written license
 525066 from Houghton Mifflin. Disclosure of contents and of embodied
 525128 programs or algorithms prohibited.
 525200 02.01.00
 525210 4096
 525230 AM8505.R2129401
TODO: Examine Bookman interface functions inside this ROM
    - Load ROM as overlay banks (64K at a time) into Ghidra
    - Find references to Bookman strings amongst the code
    - Decompile and reconstruct logic around those functions which contain interface code

Pocket Quicken (PQN-560)

Pocket Quicken (PQN-560) is a BOOKMAN device with a 3.5mm serial port and an onboard ROM that can communicate with PC software in order to back up and sync data from the device.

Bookman Sidekick (SDK-XXX)

Reversing has begun on the SKICK95.EXE program which interfaces with the Sidekick devices. The installation files can be found here. What follows is a series of timestamped reversing notes:

Analyzing with Ghidra 2022-03-09

The main types of records are synchronized with Bookman Sidekick devices are:

Possible to connect to COM1-4.

Found strings for files

Structures for sync files

Many of the DLL calls have associated debug code which makes it slightly easier to understand what's going on.

Serial data incoming

0xF7 - 
0xFF - response when unknown input is given
0xD7 - 

Design Elements

Cartridge labels

Packaging

Return to the main page

BookmanArchive.com
= Link to additional info