home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / DATABASE / PAMS10.LBR / PAMS10.AZM / PAMS10.ASM
Assembly Source File  |  2000-06-30  |  40KB  |  1,732 lines

  1. ; Program:  PAMS
  2. ; Original: Author Joe Wright (Original called AREA10)
  3. ; Date:     20 June 1987
  4. ; Altered to suit Australian PAMS list by Mike Greenhill
  5. ; Date: Sometime around the end of March 1988
  6.  
  7.  
  8. VERS    EQU    10        ; RE-released under the name of PAMS
  9. REVS    EQU    03        ; Current PAMS list revision 
  10. DECA    EQU     08        ; This Decade
  11. YEAR    EQU     08        ; This Year
  12.  
  13.  
  14. ; Inspired by AREA10 by Joe Wright
  15.  
  16. ; Which in turn was :
  17.  
  18. ; Inspired by AREACODE by Kelly Smith circa 1981...
  19.  
  20. ; ==========
  21. ;    NOTE
  22. ; ==========   
  23.  
  24. ;      ALL CREDIT FOR THE CODE MUST GO TO THE ORIGINAL AUTHORS
  25.  
  26. ;      ALL I HAVE DONE IS RECONFIGURE THE DATA BASE EQUATES FOR
  27.  
  28. ;      THE AUSTRALIAN PAMS LIST. ANY OTHER CHANGES TO THE MAIN 
  29.  
  30. ;      CODE HAS BEEN MARKED THUS: <##>
  31.  
  32.  
  33. ; Any text below in double quotes (ie ""   "")  is taken directly from
  34. ; the source of AREA16.
  35.  
  36.  
  37. ; Like AREA and indeed AREACODE,PAMS searches a simple data base for telephone
  38. ; area codes. It will also search for actual phone numbers, BBS names ,modem 
  39. ; speeds and any other misc. information that is in the data base.
  40. ; ""You may use any part of an area code or name for the search.All matches
  41. ; will be reported."" Unfortunatley at this stage area code sequences that also
  42. ; appear as parts of actual telephone numbers will cause the record of an "out
  43. ; of area BBS" to be shown. Also when extracting records of BBS's with a two
  44. ; digit area code eg Brisbane 07. All area codes with a preceding 07 will be
  45. ; included .Such as 075,079,070  etc. To overcome this the area code may be 
  46. ; entered as 07<SPACE> followed by RETURN/ENTER.Due to the layout and the 
  47. ; amount of information I have endevoured to display on the screen it is      
  48. ; possible to view only 3 records at a time. You will be prompted with
  49. ; [MORE] whilst there are un-viewed records to search.This of course may
  50. ; be changed to suit your individual requirements by editing the data equates
  51. ; and re-assembling.The more records to be displared at once the LESS each must
  52. ; contain.
  53. ;    I shall endevour to keep this up to date and will change the suffix
  54. ; to indicate the current version/date.
  55.  
  56. ; This source has been re-rleased in this form with the permission of the
  57. ; author of AREA. If you change any of the main body of code please 
  58. ; re-submit to him.You may do this via me by leaving a message and the
  59. ; new code on EXCALIBUR BBS (057) 83-1964 or type "MIKE" from within the 
  60. ; program to find my current address/number.
  61.  
  62.  
  63. ;                Mike Greenhill
  64.  
  65. ; The form I have used for the records is given at the end of the data.
  66.  
  67.  
  68.  
  69. ;""The form of the record is fairly free except that a three digit
  70. ; area code is expected as the first three characters of the record.""
  71.  
  72. ;""Each record is terminated with a single null (db 0).
  73.  
  74. ; The end of all records is terminated with a second null.""
  75.  
  76.  
  77.  
  78.  
  79. LINES    EQU    03        ;## Number of records before [More]
  80.                 ;##  Set to suit Australian PAMS list.
  81. ; General System Equates
  82.  
  83. BDOS    EQU    5        ; BDOS entry point
  84. CONO    EQU    2        ; Console output function
  85. RCON    EQU    10        ; Read console function
  86.  
  87. CR    EQU    13        ; Carriage return
  88. LF    EQU    10        ; Line feed
  89.  
  90. BASE    EQU    0
  91. TBUF    EQU    BASE+80H    ; Default buffer
  92. TPA    EQU    BASE+100H
  93.  
  94.     ORG    TPA
  95.  
  96.     JMP    START
  97. SIGN:    DB    CR,LF,CR,LF,CR,LF                      ;##
  98.     DB    'PAMS Ver ',VERS/10+'0','.',VERS MOD 10+'0'               ;##
  99.     DB    CR,LF,'Revision Date 0',REVS+'0',' 19',YEAR+'0',DECA+'0'  ;##
  100.     DB    CR,LF,'Original code by Joe Wright'                       ;##
  101.     DB      CR,LF,'AUSTRALIAN Version by Mike Greenhill'              ;##
  102.     DB    CR,LF,'Re-released with kind permission',CR,LF,0          ;##
  103.  
  104. START:    LXI    H,SIGN        ; Point to signon message
  105.     CALL    PSTR        ; Print string at (HL)
  106.     CALL    CRLF        ; New line
  107.     LDA    TBUF+2        ; First character of command string
  108.     CPI    '?'        ; Check for help           ;was '/'##
  109.     JZ    HELP         ; Report help and return to CCP   
  110.     CALL    TERM        ; Terminate the input line (null)
  111.     JNZ    SEARCH        ; Search for user's string, return to CCP
  112. STRT:    CALL    HELP        ; Report help
  113. STRT1:    XRA    A
  114.     STA    FOUND        ; Show nothing found
  115.     MVI    A,LINES
  116.     STA    LINE        ; Restore line count to LINES
  117.     CALL    PRINT        ; Ask for target
  118.     DB    CR,LF,LF, ' Enter Area, BBS name or modem speed : ',0  ;##
  119.     CALL    RDCON        ; Wait for it
  120.     RZ            ; No selection, quit
  121.     CALL    CRLF        ; Turn up a new line
  122.     LXI    H,TBUF+1    ; Point to user's string
  123.     CALL    CAPSTR        ; Capitalize it
  124.     CALL    SEARCH        ; This time, don't return to CCP but..
  125.     JMP    STRT1        ; Start over
  126.  
  127. ; Advance HL to first non-space
  128.  
  129. SKSP:    MOV    A,M        ; Get a character
  130.     CPI    0        ; Is it a null?
  131.     RZ            ; First non-space is a null
  132.     SUI    ' '        ; Is it a space?
  133.     RNZ            ; Return if not
  134.     INX    H        ; Next
  135.     JMP    SKSP        ; Try again
  136.  
  137. SEARCH:    LXI    H,TBUF+1    ; Point to user's string
  138.     CALL    SKSP        ; Skip leading spaces
  139.     JZ    STRT        ; First non-space was a null
  140.     XCHG            ; Target to DE
  141.     LXI    H,AREAS+1    ; Point to database
  142. SRCH0:    PUSH    D        ; Save pointer to target
  143.     JMP    SRCH2        ; Get the search underway
  144.  
  145. SRCH1:    POP    D        ; Get target address
  146.     PUSH    D        ; And save it again
  147.  
  148. SRCH2:    LDAX    D        ; Get next byte from target
  149.     ORA    A        ; Check for null
  150.     JZ    GOTONE        ; End of this compare
  151.     MOV    A,M        ; Get one from database
  152.     ORA    A        ; Is it a null?
  153.     JNZ    SRCH3        ; Nope..
  154.     INX    H        ; Point to the next one
  155.     MOV    A,M        ; Get it
  156.     ORA    A        ; Is it a null as well?
  157.     JZ    ENDLST        ; Finished if so, continue if not.
  158.  
  159. SRCH3:    CALL    CAPS        ; Capitalize character from database
  160.     XCHG            ; Point HL at target
  161.     CMP    M        ; Same as target byte?
  162.     XCHG
  163.     INX    H        ; Point to next byte in database
  164.     JNZ    SRCH1        ; Not the same, start over
  165.     INX    D        ; Point to next target byte
  166.     JMP    SRCH2        ; Try next character
  167.  
  168. ENDLST:    POP    H        ; Point to target
  169.     LDA    FOUND        ; Get found flag
  170.     ORA    A        ; Any found?
  171.     RNZ            ; Yes, normal end
  172.     CALL    PRINT
  173.     DB    ' Reference ',0
  174.     CALL    PSTR        ; Print the target string
  175.     CALL    PRINT
  176.     DB    ' Not Found.',0
  177.     RET
  178.  
  179. GOTONE:    LDA    FOUND
  180.     ORA    A
  181.     CNZ    CRLF
  182.     ORI    255
  183.     STA    FOUND        ; Leave message for endlst
  184.     CALL    PRINT
  185.     DB    CR,LF,LF,' STD AREA :  ',0                                ;##
  186.     CALL    LAST        ; Point HL to beginning of record
  187.  
  188.     MVI    B,3        ; Three digits for area code
  189. P3:    MOV    A,M        ; Get a digit
  190.     INX    H        ; Point to next
  191.     CALL    COUT        ; Ship it
  192.     DCR    B        ; Count down
  193.     JNZ    P3        ; Again
  194.  
  195.     CALL    PRINT
  196.     DB    '   ',0        ;   "-" Deleted by Mike
  197.     CALL    PSTR        ; Print the rest of the database record
  198.  
  199.     PUSH    H        ; Save pointer to next record
  200.     LXI    H,LINE        ; Point to line count
  201.     DCR    M        ; Count down
  202.     JNZ    GOT1        ; Not at limit
  203.     MVI    M,LINES        ; Limit was reached, LINES to LINE
  204.     CALL    SAK        ; Wait for, and echo, user's response
  205. GOT1:    POP    H        ; Get the pointer back
  206.     JMP    SRCH1        ; Try again
  207.     
  208.  
  209. HELP:    CALL    PRINT
  210.     DB    CR,LF,CR,LF
  211.     DB    ' BBS,Phone Dialing Area Database.',CR,LF
  212.     DB    '  Search for Area Code, Phone No.,BBS Name,Modem Speed.'
  213.     DB    CR,LF
  214.     DB    '  Usage:  PAMS EXCALIBUR, PAMS 002, PAMS V22bis etc.',0
  215.     RET
  216. ;###################################################################
  217. ;EXTRA:  CALL    PRINT
  218. ;    DB    CR,LF,CR,LF,CR,LF
  219. ;    DB    'PAMS'                         To be added in next release
  220. ;    DB    CR,LF,'EXTRA Help Screen'
  221. ;    DB    CR,LF,'-----------------',0    
  222. ;    RET
  223.  
  224.  
  225.  
  226. ; We have printed LINES lines, report and wait for any keypress
  227.  
  228. SAK:    CALL    PRINT
  229.     DB    CR,LF,' [More] ',0
  230.     MVI    C,1
  231.     JMP    BDOS        ; Go to bdos, return to caller
  232.  
  233. ; Capitalize the string at HL until a null is encountered
  234.  
  235. CAPSTR:    MOV    A,M        ; Get a character
  236.     ORA    A        ; Check for null
  237.     RZ            ; Finished if so
  238.     CALL    CAPS        ; Capitalize it
  239.     MOV    M,A        ; Put it back
  240.     INX    H        ; Point to the next one
  241.     JMP    CAPSTR        ; Again
  242.  
  243. ; Capitalize the character in A if necessary.
  244.  
  245. CAPS:    CPI    'a'
  246.     RC            ; Not lower case, ret
  247.     CPI    'z'+1
  248.     RNC            ; Also not lower case, ret
  249.     ANI    5FH        ; Force upper case
  250.     RET
  251.  
  252. RDCON:    LXI    D,TBUF-1    ; Max length position
  253.     MVI    A,40        ; Any city or state longer ?
  254.     STAX    D        ; Store it
  255.     MVI    C,RCON        ; Read console function
  256.     CALL    BDOS        ; Do it, wait for user input
  257.  
  258. TERM:    LXI    H,TBUF        ; Point to default buffer count
  259.     MOV    E,M        ; Count in E
  260.     MVI    D,0
  261.     INX    H        ; Point to first character
  262.     PUSH    H        ; Save the pointer
  263.     DAD    D        ; Point past last character
  264.     MVI    M,0        ; Terminate it with a null
  265.     POP    H        ; Restore pointer to first character
  266.     MOV    A,M        ; Get the first character
  267.     ORA    A        ; Return Z if no characters
  268.     RET
  269.  
  270. ; Back up to the first character of the record (area code)
  271.  
  272. LAST:    DCX    H        ; Back up
  273.     MOV    A,M        ; Get one
  274.     ORA    A        ; Null?
  275.     JNZ    LAST        ; Again if not
  276.     INX    H        ; Point to first character
  277.     RET
  278.  
  279. PRINT:    XTHL            ; Save HL on top of stack and point to string
  280.     CALL    PSTR        ; Print the string
  281.     XTHL            ; Restore HL, top of stack is next instruction
  282.     RET
  283.  
  284. PSTR:    MOV    A,M        ; Get a character
  285.     INX    H        ; Point to next
  286.     ORA    A        ; Is it a null?
  287.     RZ            ; Quit if so, else..
  288.     CALL    COUT        ; Ship it to the terminal
  289.     JMP    PSTR        ; Again
  290.  
  291. CRLF:    MVI    A,CR        ; Carriage return code
  292.     CALL    COUT        ; Ship it
  293.         MVI     A,LF            ; ## Extra Line Feed added by Mike
  294.     MVI    A,LF        ; Line feed code, fall through to cout
  295.  
  296. COUT:    PUSH    H
  297.     PUSH    D
  298.     PUSH    B
  299.     PUSH    PSW        ; Save all the registers
  300.     MOV    E,A        ; Character to E
  301.     MVI    C,CONO        ; Console output function
  302.     CALL    BDOS        ; Do it
  303.     POP    PSW
  304.     POP    B
  305.     POP    D
  306.     POP    H        ; Restore all the registers
  307.     RET
  308.  
  309. FOUND:    DB    0        ; At least one match was found if NZ
  310. LINE:    DB    LINES        ; Lines per screen
  311.  
  312. ;""The following database records are free form except that the three-digit
  313. ; area code is expected as the first three characters.    They may be of
  314. ; any length and may include CR and LF characters where appropriate.""
  315.  
  316. ;"" Please note again that all records are terminated with a null and
  317. ; that the end of the records is terminated with a second null.""
  318.  
  319.  
  320.  
  321. AREAS:    DB    0        ; Permits finding beginning of first record
  322.  
  323. ;            =============================
  324. ;                 +    FROM PAMS LIST 0388    +
  325. ;            =============================
  326.  
  327. ;                     *******-- NEW SOUTH WALES --*******
  328.  
  329.  
  330.         DB      '02 '
  331.         DB      CR,LF,'2000 and Beyond TBBS  '
  332.         DB      CR,LF,'522-6514  '
  333.         DB      CR,LF,'V21 V22 V23 B103 B212  ',0
  334.  
  335.         DB      '047'
  336.         DB      CR,LF,'ABCOM  '
  337.         DB      CR,LF,'36-4165  '
  338.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  339.  
  340.         DB      '02 '
  341.         DB      CR,LF,'ACE (NSW) BBS  '
  342.         DB      CR,LF,'529-2059  '
  343.         DB      CR,LF,'V21  ',0
  344.  
  345.         DB      '02 '
  346.         DB      CR,LF,'Alpha Juno BBS  '
  347.         DB      CR,LF,'774-1543  '
  348.         DB      CR,LF,'V22 V22bis  ',0
  349.  
  350.         DB      '02 '
  351.         DB      CR,LF,'Amiga Zone BBS  '
  352.         DB      CR,LF,'771-6351  '
  353.         DB      CR,LF,'V21 V22 V23 B103 B212  '
  354.         DB      CR,LF,'2100- 0700 Daily  ',0
  355.  
  356.         DB      '02 '
  357.         DB      CR,LF,'Amstrad ABBS  '
  358.         DB      CR,LF,'981-2966  '
  359.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  360.              
  361.         DB      '02 '
  362.         DB      CR,LF,'Apple Users Group BBS  '
  363.         DB      CR,LF,'498-7084  '
  364.         DB      CR,LF,'V21  ',0
  365.  
  366.         DB      '02 '
  367.         DB      CR,LF,'Aquarius  '
  368.         DB      CR,LF,'686-2798  '
  369.         DB      CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  370.  
  371.         DB      '02 '
  372.         DB      CR,LF,'Arco-Tel BBS  '
  373.         DB      CR,LF,'683-3956  '
  374.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  375.  
  376.         DB      '02 '
  377.         DB      CR,LF,'Arknet  '
  378.         DB      CR,LF,'868-4836  '
  379.         DB      CR,LF,'V22 V22bis B103  '
  380.         DB      CR,LF,'0000 - 1600  ',0
  381.  
  382.         DB      '02 '
  383.         DB      CR,LF,'Arrow KBBS  '
  384.         DB      CR,LF,'451-2660  '
  385.         DB      CR,LF,'V21 V22 V23  ',0
  386.  
  387.         DB      '02 '
  388.         DB      CR,LF,'AUGUR TBBS  '
  389.         DB      CR,LF,'311-3052  '
  390.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  391.  
  392.         DB      '02 '
  393.         DB      CR,LF,'Australian Pick User"s BBS  '
  394.         DB      CR,LF,'631-8603  '
  395.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  396.  
  397.         DB      '047'
  398.         DB      CR,LF,'Beauford BBS  '
  399.         DB      CR,LF,'58-6542  '
  400.         DB      CR,LF,'V21 V22  ',0
  401.  
  402.  
  403.         DB      '02'
  404.         DB      CR,LF,'Blackboard BBS  '
  405.         DB      CR,LF,'526-1343'
  406.         DB      CR,LF,'V21  ',0
  407.  
  408.         DB      '02 '
  409.         DB      CR,LF,'Bramblebush  '
  410.         DB      CR,LF,'829-1809  '
  411.         DB      CR,LF,'V21 V22  '
  412.         DB      CR,LF,'Mon - Sat: 24 Hours  ',0
  413.  
  414.         DB      '02 '
  415.         DB      CR,LF,'Cesspit  '
  416.         DB      CR,LF,'543-7204  '
  417.         DB      CR,LF,'V21 V22 V23 B103  ',0
  418.  
  419.         DB      '02 '
  420.         DB      CR,LF,'Club Amiga BBS  '
  421.         DB      CR,LF,'521-6338  '
  422.         DB      CR,LF,'V21 V22 B103 B212  ',0
  423.  
  424.         DB      '02 '
  425.         DB      CR,LF,'Club Mac Remote Maccess System  '
  426.         DB      CR,LF,'73-1992  '
  427.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  428.  
  429.         DB      '02 '
  430.         DB      CR,LF,'Club-80 RTRS  '
  431.         DB      CR,LF,'332-2494  '
  432.         DB      CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  433.  
  434.         DB      '02 '
  435.         DB      CR,LF,'Co-Co Connection  '
  436.         DB      CR,LF,'618-3591  '
  437.         DB      CR,LF,'V21 V22 V22bis  ',0
  438.  
  439.         DB      '043'
  440.         DB      CR,LF,'Coastal Opus BBS  '
  441.         DB      CR,LF,'23-2275  '
  442.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  443.  
  444.         DB      '02 '
  445.         DB      CR,LF,'CoCo Arena  '
  446.         DB      CR,LF,'646-5573  ',0
  447.  
  448.         DB      '02 '
  449.         DB      CR,LF,'Comet C-64 BBS  '
  450.         DB      CR,LF,'599-7342  ',0
  451.  
  452.         DB     '043'
  453.         DB     CR,LF,'CommLink BBS  '
  454.         DB     CR,LF,'41-3135  '
  455.         DB     CR,LF,'V21 V22  ',0
  456.  
  457.         DB      '02 '
  458.         DB      CR,LF,'Commodore C-64 BBS  '
  459.         DB      CR,LF, '664-2334  '
  460.         DB      CR,LF,'V21 V22 V23  ',0
  461.  
  462.         DB      '02 '
  463.         DB      CR,LF,'Commodore Pursuit KBBS  '
  464.         DB      CR,LF,'522-9507  '
  465.         DB      CR,LF,'V21 V22 V23  ',0
  466.  
  467.         DB      '02 '
  468.         DB      CR,LF,'Contact BBS  '
  469.         DB      CR,LF,'798-6368  '
  470.         DB      CR,LF,'V21 V22 V23 B103 B212  ',0
  471.  
  472.         DB      '02 '
  473.         DB      CR,LF,'CSACE BBS  '
  474.         DB      CR,LF,'529-8249  '
  475.         DB      CR,LF,'V21  ',0
  476.  
  477.         DB     '02 '
  478.         DB     CR,LF,'Cursor Contact KBBS  '
  479.         DB     CR,LF,'637-8131  '
  480.         DB     CR,LF,'V21  ',0
  481.  
  482.         DB      '02 '
  483.         DB      CR,LF,'Cybersoft Opus  '
  484.         DB      CR,LF,'212-2261  '
  485.         DB      CR,LF,'V22 V22bis V23  ',0
  486.  
  487.         DB      '02 '
  488.         DB      CR,LF,'Delta Net  '
  489.         DB      CR,LF,'457-8281  '
  490.         DB      CR,LF,'V21 V22 V23  ',0
  491.  
  492.         DB      '02 '
  493.         DB      CR,LF,'Dick Smiths RIBM  '
  494.         DB      CR,LF,'887-2276  ',0
  495.  
  496.         DB      '02 '
  497.         DB      CR,LF,'Dingo"s Den BBS  '
  498.         DB      CR,LF,'888-2203  '
  499.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  500.  
  501.         DB      '02 '
  502.         DB      CR,LF,'Down Under KBBS  '
  503.         DB      CR,LF,'674-6647  '
  504.         DB      CR,LF,'V21  ',0
  505.  
  506.         DB      '02 '
  507.         DB      CR,LF,'Dream Time FRP  '
  508.         DB      CR,LF,'93-5225  '
  509.         DB      CR,LF,'2100 - 0700 Daily  ',0
  510.  
  511.         DB      '02 '
  512.         DB      CR,LF,'Eagle"s Nest C-64 BBS  '
  513.         DB      CR,LF,'451-0535  '
  514.         DB      CR,LF,'V21  ',0
  515.  
  516.         DB      '02 '
  517.         DB      CR,LF,'EasyComm Opus  '
  518.         DB      CR,LF,'558-9620  '
  519.         DB      CR,LF,'V21 V22 V22bis  ',0
  520.  
  521.  
  522.         DB      '02 '
  523.         DB      CR,LF,'Fido Australia  '
  524.         DB      CR,LF,'959-3712  '
  525.         DB      CR,LF,'V21 V22 V22bis  ',0
  526.  
  527.         DB      '02 '
  528.         DB      CR,LF,'First Nice MIDILine  '
  529.         DB      CR,LF,'868-4347  '
  530.         DB      CR,LF,'V22 V22bis B103 PEP  ',0
  531.  
  532.         DB      '047'
  533.         DB      CR,LF,'Freeze World  '
  534.         DB      CR,LF,'33-3094  '
  535.         DB      CR,LF,'V21  '
  536.         DB      CR,LF,'2130 - 0730  ',0
  537.  
  538.         DB      '02 '
  539.         DB      CR,LF,'Galactic Federation  '
  540.         DB      CR,LF,'233-5040  '
  541.         DB      CR,LF,'V22 V22bis  ',0
  542.  
  543.         DB      '02 '
  544.         DB      CR,LF,'Galaxy RAPL  '
  545.         DB      CR,LF,'875-3943  '
  546.         DB      CR,LF,'V21  ',0
  547.  
  548.         DB      '02 '
  549.         DB      CR,LF,'GCS  '
  550.         DB      CR,LF,'570-9861  '
  551.         DB      CR,LF,'V21 V22  ',0
  552.  
  553.         DB      '060'
  554.         DB      CR,LF,'HighTech  '
  555.         DB      CR,LF,'25-1813  '
  556.         DB      CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  557.  
  558.         DB      '042'
  559.         DB      CR,LF,'Illawarra C-64 BBS  '
  560.         DB      CR,LF,'61-8230  ',0
  561.  
  562.         DB      '02 '
  563.         DB      CR,LF,'Info-Centre BBS  '
  564.         DB      CR,LF,'344-9511  ',0
  565.  
  566.         DB      '02 '
  567.         DB      CR,LF,'Landover BBS  '
  568.         DB      CR,LF,'319-1793  '
  569.         DB      CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  570.  
  571.         DB      '02 '
  572.         DB      CR,LF,'Lodestone BBS  '
  573.         DB      CR,LF,'456-3264  '
  574.         DB      CR,LF,'V22 V22bis B103  ',0
  575.  
  576.         DB      '02 '
  577.         DB      CR,LF,'Manly BBS '
  578.         DB      CR,LF,'977-6820  '
  579.         DB      CR,LF,'V21 V22 V23  ',0
  580.  
  581.         DB      '049'
  582.         DB      CR,LF,'Matrix (Maitland) BBS  '
  583.         DB      CR,LF,'38-5057  '
  584.         DB      CR,LF,'V21 V22  ',0
  585.  
  586.         DB      '049'
  587.         DB      CR,LF,'Matrix (Newcastle) BBS  '
  588.         DB      CR,LF,'29-5279  '
  589.         DB      CR,LF,'V21 V22  ',0
  590.  
  591.         DB      '02 '
  592.         DB      CR,LF,'Micro Design Lab  '
  593.         DB      CR,LF,'663-0151  ',0
  594.  
  595.         DB      '02 '
  596.         DB      CR,LF,'Micro Mart C Users  '
  597.         DB      CR,LF,'560-3607  '
  598.         DB      CR,LF,'V21 V22 V22bis V23  ',0
  599.  
  600.       DB      '02 '
  601.     DB    CR,LF,'Midnight Quest  '
  602.     DB    CR,LF,'519-3579  '
  603.     DB      CR,LF,'V21 V22 V23   '
  604.     DB    CR,LF,'Weekdays: 1700 - 0900  '
  605.     DB    'Weekends: 24 Hours  ',0
  606.  
  607.     DB    '02 '
  608.     DB    CR,LF,'Milliway"s  '
  609.     DB    CR,LF,'357-7027  '
  610.         DB    CR,LF,'V21 V22  '
  611.     DB    CR,LF,'2130 - 0730 Daily  ',0
  612.  
  613.     DB    '02 '
  614.     DB    CR,LF,'Mirage Arcane  '
  615.     DB    CR,LF,'665-5970  '
  616.         DB      CR,LF,'V22 V22bis B103  '
  617.     DB    CR,LF,'Daily: 2200 - 0700  ',0
  618.  
  619.     DB    '02 '
  620.     DB    CR,LF,'Moebius Trip  '
  621.     DB    CR,LF,'439-7072  ',0
  622.  
  623.     DB    '063'
  624.     DB    CR,LF,'Mudgee Connection  '
  625.     DB    CR,LF,'72-1898  '
  626.     DB    CR,LF,'V21 V22 V22bis V23  '
  627.     DB    CR,LF,'2100 - 0700  ',0
  628.  
  629.     DB    '02 '
  630.     DB    CR,LF,'Nebula RAPL  '
  631.     DB    CR,LF,'407-2729  '
  632.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  633.  
  634.     DB    '02 '
  635.     DB    CR,LF,'NetComm Australia  '
  636.     DB    CR,LF,'887-3297  '
  637.     DB    CR,LF,'V22 V22bis PEP  '
  638.     DB    CR,LF,'Weekdays: 1900 - 0900  '
  639.     DB    'Weekends: 24 Hours  ',0
  640.  
  641.     DB    '046'
  642.     DB    CR,LF,'New Frontiers CBCS  '
  643.     DB    CR,LF,'25-6954  '
  644.     DB    CR,LF,'V21 V22 V23 B103 B212  ',0
  645.  
  646.     DB    '049'
  647.     DB    CR,LF,'Newcastle Amiga BBS  '
  648.     DB    CR,LF,'58-7350  '
  649.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  650.  
  651.     DB    '049'
  652.     DB    CR,LF,'Newcastle Micro Club RCPM  '
  653.     DB    CR,LF,'68-5289  '
  654.     DB    CR,LF,'V21 V22 V22bis V23  '
  655.     DB    CR,LF,'Weekdays: 1700 - 0830  '
  656.     DB    'Weekends: 24 Hours  ',0
  657.  
  658.     DB    '02 '
  659.     DB    CR,LF,'Night Shift BBS  '
  660.     DB    CR,LF,'635-8175  '
  661.     DB    CR,LF,'V21 V22 V23 B103 B212  '
  662.     DB    CR,LF,'2030 - 0500 Daily  ',0
  663.  
  664.     DB    '02 '
  665.     DB    CR,LF,'Nightmare BBS  '
  666.     DB    CR,LF,'545-???2  '
  667.     DB      CR,LF,'V21 V22 V22bis  ',0
  668.  
  669.     DB    '060'
  670.     DB    CR,LF,'Palantir C-64 BBS  '
  671.     DB    CR,LF,'40-1284  '
  672.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  '
  673.  
  674.     DB    '02 '
  675.     DB    CR,LF,'Paragon Bulletin Board  '
  676.     DB    CR,LF,'597-7477  '
  677.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  678.  
  679.     DB    '02 '
  680.     DB    CR,LF,'Phantomland  '
  681.     DB    CR,LF,'399-7716  '
  682.     DB    CR,LF,'V21 V22 V23  ',0
  683.  
  684.     DB     '02 '
  685.     DB    CR,LF,'Playground BeeBS  '
  686.     DB    CR,LF,'53-9688  '
  687.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  688.  
  689.     DB    '02 '
  690.     DB    CR,LF,'Poet"s Dilemma  '
  691.     DB    CR,LF,'804-6412  '
  692.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  693.  
  694.     DB    '02 '
  695.     DB    CR,LF,'Program Paradise  '
  696.     DB    CR,LF,'969-5861  '
  697.     DB    CR,LF,'V21 V22 V22bis V23  '
  698.     DB    CR,LF,'1900 - 0700 Daily  ',0
  699.  
  700.     DB    '02 ' 
  701.     DB    'Prophet TBBS  '
  702.     DB    CR,LF,'628-5222  '
  703.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  704.  
  705.     DB    '02 '
  706.     DB    CR,LF,'Raucous BBS  '
  707.     DB    CR,LF,'261-5329  '
  708.     DB    CR,LF,'V21 V22 V23  '
  709.     DB    CR,LF,'Daily: 0900 - 1800  ',0
  710.  
  711.     DB    '02 '
  712.     DB    CR,LF,'RCOM C-64 BBS  '
  713.     DB    CR,LF,'667-1930  '
  714.     DB    CR,LF,'V21 V22 V23 V23ORG B103 B212  ',0
  715.  
  716.     DB    '02 '
  717.     DB    CR,LF,'RUNX  '
  718.     DB    CR,LF,'487-2533  '
  719.     DB    CR,LF,'V21  ',0
  720.  
  721.     DB    '02 '
  722.     DB    CR,LF,'SBA BBS  '
  723.     DB    CR,LF,'411-1850  '
  724.     DB    CR,LF,'V22 V22bis  ',0
  725.  
  726.     DB    '02 '
  727.     DB    CR,LF,'Sci-Fi BBS  '
  728.     DB    CR,LF,'646-4865  '
  729.     DB    CR,LF,'V21 V22 V23  ',0
  730.  
  731.     DB    '02 '
  732.     DB    CR,LF,'Scorpio BBS  '
  733.     DB    CR,LF,'621-7487  '
  734.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  735.  
  736.     DB    '02 '
  737.     DB    CR,LF,'Sentry  '
  738.     DB    CR,LF,'428-4687  '
  739.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  740.  
  741.     DB    'O2 '
  742.     DB    CR,LF,'Shore BBS  '
  743.     DB    CR,LF,'959-3936  '
  744.     DB    CR,LF,'V21  '
  745.     DB    CR,LF,'Weekdays: 1800 - 0730  '
  746.     DB    'Weekends: 24 Hours  ',0
  747.  
  748.     DB    '02 '
  749.     DB    CR,LF,'SMUG Bee RCP/M  '
  750.     DB    CR,LF,'520-5181  '
  751.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  752.  
  753.     DB    '02 '
  754.     DB    CR,LF,'Software Connection  '
  755.     DB    CR,LF,'451-2954  '
  756.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  757.  
  758.     DB    '02 '
  759.     DB    CR,LF,'Software Tools  '
  760.     DB    CR,LF,'449-2618  '
  761.     DB    CR,LF,'V22bis PEP  ',0
  762.  
  763.     DB    '02 '
  764.     DB    CR,LF,'Sorcerer Users Group  '
  765.     DB    CR,LF,'626-8020  '
  766.     DB    CR,LF,'V22 V22bis B103  ',0
  767.  
  768.     DB    '065'
  769.     DB    CR,LF,'Sorcim microS  '
  770.     DB    CR,LF,'59-8854  '
  771.     DB    CR,LF,'V22 V22bis PEP  '
  772.     DB    CR,LF,'2100 - 0800 Daily  ',0
  773.  
  774.     DB    '042'
  775.     DB    CR,LF,'Steel City  '
  776.     DB    CR,LF,'83-7247  '
  777.     DB    CR,LF,'V21 V22 V22bis V23  '
  778.     DB    CR,LF,'1830 - 2330 Daily  ',0
  779.  
  780.     DB    '02 '
  781.     DB    CR,LF,'Sydney PC Users RIBM  '
  782.     DB    CR,LF,'221-5520  '
  783.     DB    CR,LF,'V21 V22 V23  ',0
  784.  
  785.     DB    '02 '
  786.     DB    CR,LF,'Tachyonics  '
  787.     DB    CR,LF,'438-2682  '
  788.     DB    CR,LF,'V21 V22  ',0
  789.  
  790.     DB    '02 '
  791.     DB    CR,LF,'The Black Hole  '
  792.     DB    CR,LF,'81-4253  '
  793.     DB    CR,LF,'V21 V22 V23 B103 B212  ',0
  794.  
  795.     DB    '02 '
  796.     DB    CR,LF,'The Galactic Federation  '
  797.     DB    CR,LF,'233-5040  '
  798.     DB    CR,LF,'V21 V22 V22bis V23  '
  799.     DB     CR,LF,'Weekdays: 1700 - 0900  '
  800.     DB    'Weekends: 24 Hours  ',0
  801.  
  802.     DB    '047'
  803.     DB    CR,LF,'The Guild FRP BBS  '
  804.     DB    CR,LF,'21-8625  '
  805.     DB    CR,LF,'V21  '
  806.     DB    CR,LF,'2100 - 0800 Daily  ',0
  807.  
  808.     DB    '02 '
  809.     DB    CR,LF,'The Kiwi Konektion  '
  810.     DB    CR,LF,'439-6178  '
  811.     DB    CR,LF,'V21 V22 V22bis V23  '
  812.     DB    CR,LF,'Mon - Thur 1800 - 0800  '
  813.     DB    CR,LF,'Fri - 1700 - Mon 0800  ',0
  814.  
  815.     DB    '049'
  816.     DB    CR,LF,'The Library  '
  817.     DB    CR,LF,'62-2931  '
  818.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  819.  
  820.     DB    '02 '
  821.     DB    CR,LF,'The Lost Tavern  '
  822.     DB    CR,LF,'938-6836  '
  823.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  824.  
  825.     DB    '02 ' 
  826.     DB    CR,LF,'TNT Shuttle  '
  827.     DB    CR,LF,'319-3112  '
  828.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  829.  
  830.     DB    '02 '
  831.     DB    CR,LF,'Trantor  '
  832.      DB    CR,LF,'43-6899  '
  833.     DB    CR,LF,'V21 V22 V22bis B103 B212  ',0
  834.  
  835.     DB    '063' 
  836.      DB    CR,LF,'Triops BBS  '
  837.     DB    CR,LF,'62-9715  ' 
  838.     DB    CR,LF,'V21  '
  839.     DB    CR,LF,'Daily: 2100 to 0900  ',0
  840.  
  841.     DB    '02 '
  842.     DB    CR,LF,'Ventura Publisher BBS  '
  843.     DB    CR,LF,'449-0463  ',0
  844.  
  845.     DB    '02 '
  846.     DB    CR,LF,'VIP BBS  '
  847.     DB    CR,LF,'319-3207  ',0
  848.  
  849.     DB    '02 '
  850.     DB    CR,LF,'Yet Another Bulletin Board  '
  851.     DB    CR,LF,'804-6837  '
  852.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  853.  
  854.     DB    '02 '
  855.     DB    CR,LF,'Your Computer  '
  856.     DB    CR,LF,'669-1385  '
  857.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  858.  
  859.     DB    '02 '
  860.     DB    CR,LF,'Zeta RTRS  '
  861.     DB    CR,LF,'627-4177  '
  862.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  863.  
  864.  
  865.   
  866.  
  867. ;             *******  AUSTRALIAN CAPITAL TERRITORY  ********
  868.  
  869.  
  870.     DB    '062' 
  871.     DB    CR,LF,'ACT Amiga BBS  '
  872.     DB    CR,LF,'58-9967  '
  873.     DB    CR,LF,'V21 V22 V22bis B103 B212  ',0
  874.  
  875.     DB    '062' 
  876.     DB    CR,LF,'AMIGA Opus  '
  877.     DB    CR,LF,'58-9967  '
  878.     DB    CR,LF,'V22 V22bis B103  ',0
  879.  
  880.     DB    '062' 
  881.     DB    CR,LF,'Commodore Users Group BBS  '
  882.     DB    '81-0847  ',0
  883.  
  884.     DB    '062'
  885.     DB    CR,LF,'PC Exchange RIBM  '
  886.     DB    CR,LF,'58-1406  '
  887.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  888.  
  889.     DB    '062' 
  890.     DB    CR,LF,'PCUG Bulletin Board  '
  891.     DB    CR,LF,'59-1244  '
  892.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  893.  
  894.     DB    '062' 
  895.     DB    CR,LF,'Pharmacy BBS  '
  896.     DB    CR,LF,'92-3875  '
  897.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212  ',0
  898.  
  899.  
  900.   
  901. ;            *****  VICTORIA  *****
  902.  
  903.  
  904.     DB    '03 '
  905.     DB    CR,LF,'ABE  '
  906.     DB    CR,LF,'288-3599  '
  907.     DB    CR,LF,'V21 V22  ',0
  908.  
  909.     DB    '03 ' 
  910.     DB    CR,LF,'ACES High  '
  911.     DB    CR,LF,'878-2918  '
  912.      DB    CR,LF,'V22 B103  ',0
  913.  
  914.     DB    '03 '
  915.     DB    CR,LF,'Alpha Centauri BBS  '
  916.     DB    CR,LF,'874-3559  '
  917.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  918.  
  919.     DB    '03 '
  920.     DB    CR,LF,'AM-NET RTDOS  '
  921.     DB    CR,LF,'366-7055  '
  922.     DB    CR,LF,'V21 V23  '
  923.     DB    CR,LF,'PACKET RADIO  ',0
  924.  
  925.     DB    '03 ' 
  926.     DB    CR,LF,'AmigaLink  '
  927.     DB    CR,LF,'792-3918  '
  928.     DB    CR,LF,'V21 V22 V23  ',0
  929.  
  930.     DB    '03 ' 
  931.     DB    CR,LF,'Angler"s Den  '
  932.     DB    CR,LF,'876-4118  '
  933.      DB    CR,LF,'V21 V22 V23  '
  934.     DB    CR,LF,'Weekdays: 0900 - 2300  '
  935.     DB    'Weekends: 24 Hours  ',0
  936.  
  937.     DB    '03 '
  938.     DB    CR,LF,'Anzugs OPUS  '
  939.     DB    CR,LF,'887-0678  '
  940.     DB    CR,LF,'V22 V22bis B103 B212  ',0
  941.  
  942.     DB    '03 '
  943.     DB    CR,LF,'Apple Hackers BBS  '
  944.     DB    CR,LF,'762-1582  ',0
  945.  
  946.     DB    '03 '
  947.     DB    CR,LF,'Atlantis RBBS-PC  '
  948.     DB    CR,LF,'277-6824  ',0
  949.  
  950.     DB    '03 '
  951.     DB    CR,LF,'AUSOM System #1  '
  952.     DB    CR,LF,'877-1990  ',0
  953.  
  954.     DB     '053'
  955.     DB    CR,LF,'Ballarat C.A.E.  '
  956.     DB    CR,LF,'339-285  '
  957.     DB    CR,LF,'V21 V22 V23  ',0
  958.  
  959.     DB    '052' 
  960.     DB    CR,LF,'Bayside  '
  961.     DB    CR,LF,'53-1110  '
  962.     DB    CR,LF,'V21 V22 V23  ',0
  963.  
  964.     DB    '03 ' 
  965.     DB    CR,LF,'Big Tedd"s Fido BBS  '
  966.     DB    CR,LF,'509-6067  '
  967.     DB    CR,LF,'V21  '
  968.     DB    CR,LF,'2100 - 1800 Daily  ',0
  969.  
  970.     DB    '03 '
  971.     DB    CR,LF,'Brainstorm BBS  '
  972.     DB    CR,LF,'758-7086  '
  973.     DB    CR,LF,'V22  ',0
  974.  
  975.     DB     '03 ' 
  976.     DB    CR,LF,'C-64 BBS  '
  977.     DB    CR,LF,'489-4555  ',0
  978.  
  979.     DB      '03 '
  980.     DB    CR,LF,'Cave 76  '
  981.     DB    CR,LF,'882-9197  '
  982.     DB    CR,LF,'V21  '
  983.     DB    CR,LF,'Daily: 2200 - 0800  ',0
  984.     
  985.      DB    '03 '
  986.     DB    CR,LF,'Compusoft BBS  '
  987.     DB    CR,LF,'386-6019  '
  988.     DB    CR,LF,'V22  ',0
  989.  
  990.     DB    '03 '
  991.     DB    CR,LF,'Crystal Palace  '
  992.     DB    CR,LF,'725-1923  ',0
  993.  
  994.     DB    '03 '
  995.     DB    CR,LF,'Cystal Symphony Opus  '
  996.     DB    CR,LF,'874-4176  '
  997.     DB    CR,LF,'Daily: 2200 - 0700  ',0
  998.  
  999.     DB    '03 ' 
  1000.     DB    CR,LF,'Custom Programming OPUS  '
  1001.     DB    CR,LF,'848-3331  '
  1002.     DB    CR,LF,'V21 V22 V23 B103 B212  ',0
  1003.  
  1004.     DB    '03 '
  1005.     DB    CR,LF,'DECUS  '
  1006.     DB    CR,LF,'62-5806  '
  1007.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1008.  
  1009.     DB    '03 ' 
  1010.     DB    CR,LF,'Down Under Software Amiga/IBM  '
  1011.     DB    CR,LF,'429-8079  '
  1012.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1013.  
  1014.     DB    '03 '
  1015.     DB    CR,LF,'East Suburb Eighty User Group  '
  1016.     DB    CR,LF,'819-3115  '
  1017.     DB    CR,LF,'V21 V22 V23 V23ORG  ',0
  1018.  
  1019.     DB    '03 '
  1020.     DB    CR,LF,'Eastcomm Opus BBS  '
  1021.     DB    CR,LF,'288-0775  '
  1022.     DB    CR,LF,'V21 V22 V23 V23ORG  ',0
  1023.  
  1024.     DB    '03 ' 
  1025.     DB    CR,LF,'Eastwood R/ZSYS & PBBS  '
  1026.     DB    CR,LF,'870-4623  '
  1027.     DB    CR,LF,'V22 V23  ',0
  1028.  
  1029.     DB    '03 ' 
  1030.     DB    CR,LF,'Electronic Cross-Over BBS  '
  1031.     DB    CR,LF,'367-5816  '
  1032.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1033.  
  1034.     DB    '03 ' 
  1035.      DB    CR,LF,'Engbase CBCS  '
  1036.      DB    CR,LF,'29-6336  '
  1037.      DB    CR,LF,'V21 V22  ',0
  1038.  
  1039.     DB    '03 ' 
  1040.      DB    CR,LF,'Entropy BBS  '
  1041.      DB    CR,LF,'583-9747  '
  1042.      DB    CR,LF,'V21 V22 V23  ',0
  1043.  
  1044.     DB    '057' 
  1045.      DB    CR,LF,'EXCALIBUR-64 RCP/M  '
  1046.     DB    CR,LF,'83-1964  '
  1047.     DB    CR,LF,'V21 V22 V23 V23ORG  '
  1048.     DB    CR,LF,'Weekdays: 08-12 16-23  '
  1049.     DB    'Weekends: 24 Hours  ',0
  1050.  
  1051.     DB    '051' 
  1052.      DB    CR,LF,'Gippsland Mail-Bus  '
  1053.      DB    CR,LF,'27-7245  ',0
  1054.  
  1055.     DB    '03 ' 
  1056.      DB    CR,LF,'MACE-ATARI BBS  '
  1057.     DB    CR,LF,'899-6203  '
  1058.     DB    CR,LF,'V21 V22 V23  ',0
  1059.  
  1060.     DB    '03 '
  1061.     DB    CR,LF,'Maxitel BBS  '
  1062.     DB    CR,LF,'882-6188  '
  1063.     DB    CR,LF,'V21  ',0
  1064.  
  1065.     DB    '03 ' 
  1066.     DB    CR,LF,'MBUG Australia Inc  '
  1067.     DB    CR,LF,'882-1571  '
  1068.     DB    CR,LF,'V21 V23  ',0
  1069.  
  1070.     DB    '03 ' 
  1071.      DB    CR,LF,'Melbourne Atari BBS  '
  1072.      DB    CR,LF,'391-5927  '
  1073.     DB    CR,LF,'****  Weekends ONLY  **** ',0
  1074.  
  1075.     DB    '03 '
  1076.     DB    CR,LF,'Melbourne Data Exchange  '
  1077.     DB    CR,LF,'561-6556  '
  1078.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1079.  
  1080.     DB    '03 ' 
  1081.     DB    CR,LF,'Melbourne PIE  '
  1082.     DB    CR,LF,'877-5568  '
  1083.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1084.  
  1085.     DB    '03 '
  1086.     DB    CR,LF,'MESA RBBS  '
  1087.     DB    CR,LF,'754-5081  '
  1088.      DB    CR,LF,'V21 V22 V23 V23ORG  ',0
  1089.  
  1090.     DB    '03 ' 
  1091.     DB    CR,LF,'Micom BBS  '
  1092.     DB    CR,LF,'762-5088  ',0
  1093.  
  1094.      DB    '03 '
  1095.     DB    CR,LF,'Midnight Frog BBS  '
  1096.     DB    CR,LF,'596-1589'
  1097.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1098.  
  1099.     DB    '054' 
  1100.      DB    CR,LF,'MIN-NET BBS  '
  1101.     DB    CR,LF,'41-3013  ',0
  1102.  
  1103.     DB    '03 ' 
  1104.     DB    CR,LF,'Motel International  '
  1105.     DB    CR,LF,'509-9611  '
  1106.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1107.  
  1108.     DB    '059' 
  1109.     DB    CR,LF,'MouseText  '
  1110.     DB    CR,LF,'42-5528  '
  1111.      DB    CR,LF,'V23  '
  1112.     DB    CR,LF,'1000 - 2200  '
  1113.     DB      CR,LF,'*** VIDEO-TEX ***',0
  1114.  
  1115.     DB    '03 ' 
  1116.      DB    CR,LF,'Museum BBS  '
  1117.     DB    CR,LF,'662-3336  '
  1118.     DB    CR,LF,'V21 V22 V23 B103 B212  ',0
  1119.  
  1120.     DB    '052' 
  1121.     DB    CR,LF,'Omegatex Videotex Service  '
  1122.     DB    CR,LF,'22-1670  '
  1123.     DB    CR,LF,'V23  '
  1124.     DB    CR,LF,'**** VIDEO-TEX ONLY ****',0
  1125.  
  1126.     DB    '03 '
  1127.     DB    CR,LF,'Osborne Australian BB  '
  1128.     DB    CR,LF,'890-4096',0
  1129.  
  1130.     DB    '03 ' 
  1131.     DB    CR,LF,'Outer Limits BBS  '
  1132.     DB    CR,LF,'725-6650  '
  1133.     DB    CR,LF,'V21 V22 V23 '
  1134.  
  1135.     DB    '03 ' 
  1136.     DB    CR,LF,'Pacific Island  '
  1137.     DB    CR,LF,'890-2174  ',0
  1138.  
  1139.     DB    '03 ' 
  1140.     DB    CR,LF,'PC Connection IBBS  '
  1141.     DB    CR,LF,'528-3750 '
  1142.     DB    CR,LF,'V21 V22 V22bis V23  ',0
  1143.  
  1144.     DB    '03 ' 
  1145.     DB    CR,LF,'PC User BBS  '
  1146.     DB    CR,LF,'819-5392  '
  1147.  
  1148.     DB    '03 '
  1149.     DB    'PC-Oasis Ssystem'
  1150.     DB    'NO FURTHER INFORMATION',0
  1151.  
  1152.     DB    '03'
  1153.     DB    CR,LF,'Pegasus'
  1154.     DB    CR,LF,'725-4948',0
  1155.  
  1156.  
  1157.     DB    '03 ' 
  1158.     DB    'Public Resource #1'
  1159.     DB    'NO FURTHER INFORMATION',0
  1160.  
  1161.     DB    '03 ' 
  1162.     DB    CR,LF,'Sams'
  1163.     DB    CR,LF,'563-1117'
  1164.     DB    CR,LF,'V21 V22 V22bis V23',0
  1165.  
  1166.     DB    '03 ' 
  1167.     DB    CR,LF,'Software Bank'
  1168.     DB    CR,LF,'820-1632'
  1169.     DB    CR,LF,'V21 V22 V22bis V23',0
  1170.  
  1171.      DB    '03 '
  1172.     DB    CR,LF,'Sotec BBS'
  1173.     DB    CR,LF,'890-8166'
  1174.     DB    CR,LF,'V22'
  1175.     DB    CR,LF,'Weekdays: 1700 - 0900  '
  1176.     DB    'Weekends: 24 Hours',0
  1177.  
  1178.     DB    '03 ' 
  1179.     DB    CR,LF,'Southern Mail'
  1180.     DB    CR,LF,'725-1621'
  1181.     DB    CR,LF,'V22 V22bis',0
  1182.  
  1183.     DB    '03 ' 
  1184.     DB    CR,LF,'Tardis BBS'
  1185.     DB    CR,LF,'859-3109'
  1186.     DB    CR,LF,'V21 V22 V22bis V23',0
  1187.  
  1188.     DB    '03 ' 
  1189.     DB    CR,LF,'Telegraph Road BBS-PC'
  1190.     DB    '743-6173'
  1191.     DB    CR,LF,'V21',0
  1192.  
  1193.     DB    '03 ' 
  1194.      DB    CR,LF,'Teletex Connection'
  1195.     DB    CR,LF,'470-6827'
  1196.      DB    CR,LF,'V23'
  1197.     DB    CR,LF,'0600 - 2200'
  1198.     DB    CR,LF,'*** VIDEO-TEX ***',0
  1199.     
  1200.     DB    '03 ' 
  1201.     DB    CR,LF,'The Dreamscape BBS'
  1202.     DB    CR,LF,'562-0489'
  1203.     DB    CR,LF,'V21 V22 V22bis V23'
  1204.     DB    CR,LF,'0700 - 2359 Daily',0
  1205.  
  1206.     DB    '03 ' 
  1207.     DB    CR,LF,'The Info-Source BBS'
  1208.     DB    CR,LF,'397-1165'
  1209.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1210.  
  1211.     DB    '03 ' 
  1212.     DB    CR,LF,'The Krime Philes CBCS'
  1213.     DB    CR,LF,'743-0324'
  1214.      DB    CR,LF,'V21 V22 V22bis V23',0
  1215.  
  1216.     DB    '03 ' 
  1217.     DB    CR,LF,'The MACBOARD'
  1218.     DB    CR,LF,'435-9152'
  1219.     DB    CR,LF,'V21 V22 V22bis V23',0
  1220.  
  1221.     DB    '03 ' 
  1222.     DB    CR,LF,'The Magic Pudding'
  1223.     DB    CR,LF,'NO FURTHER INFORMATION',0
  1224.  
  1225.     DB    '03 ' 
  1226.     DB    CR,LF,'The NATIONAL CBCS'
  1227.     DB    CR,LF,'25-6904',0
  1228.  
  1229.     DB    '03 '
  1230.     DB    CR,LF,'The Real Connection'
  1231.      DB    CR,LF,'288-0331',0
  1232.  
  1233.     DB    '03 ' 
  1234.     DB    CR,LF,'The Software Bank'
  1235.     DB    CR,LF,'820-1632'
  1236.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1237.  
  1238.     DB    '03 ' 
  1239.     DB    CR,LF,'The Time Warp'
  1240.     DB    CR,LF,'813-1663'
  1241.     DB    CR,LF,'V21 V22',0
  1242.  
  1243.     DB    '03 '
  1244.     DB    CR,LF,'The Twilite Zone'
  1245.     DB    CR,LF,'562-0686'
  1246.     DB    CR,LF,'V21 V22',0
  1247.  
  1248.     DB    '03 ' 
  1249.     DB    CR,LF,'The Ultimate C-64'
  1250.     DB    CR,LF,'735-5551'
  1251.     DB    CR,LF,'V21 V22 V22bis V23',0
  1252.  
  1253.     DB    '03 ' 
  1254.     DB    CR,LF,'Thongheads Welfare BBS'
  1255.     DB    CR,LF,'419-9256'
  1256.     DB    CR,LF,'V21 V22 V22bis'
  1257.     DB    CR,LF,'Weekdays: 1800 - 0900  '
  1258.     DB    'Weekends: 24 Hours',0
  1259.  
  1260.     DB    '03 ' 
  1261.     DB    CR,LF,'VIDEOTEXT/4000'
  1262.     DB    CR,LF,'741-3295'
  1263.     DB    CR,LF,'V23 *** VIDEO-TEX ONLY ***'
  1264.     DB    CR,LF,'0600 - 2300',0
  1265.  
  1266.     DB    '03 ' 
  1267.     DB    CR,LF,'Yarra Valley BBS'
  1268.     DB    CR,LF,'736-1814'
  1269.     DB    CR,LF,'V21 V22 V23'
  1270.     DB    CR,LF,'Daily: 1000 - 0800',0
  1271.  
  1272.     DB    '03 ' 
  1273.     DB    CR,LF,'Zoist'
  1274.     DB    CR,LF,'467-2871'
  1275.     DB    CR,LF,'V21',0
  1276.  
  1277.  
  1278. ;              ******** QUEENSLAND ********
  1279.  
  1280.  
  1281.     DB    '070' 
  1282.     DB    CR,LF,'Access North Queensland'
  1283.     DB    CR,LF,'51-0566'
  1284.     DB    CR,LF,'V21 V22 V23',0
  1285.  
  1286.     DB    '07 ' 
  1287.     DB    CR,LF,'AMPAK PBBS/RCPM'
  1288.     DB    CR,LF,'263-7070'
  1289.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212'
  1290.     DB    CR,LF,'PACKET RADIO',0
  1291.  
  1292.     DB    '07 ' 
  1293.     DB    CR,LF,'Apple-Q Node 1'
  1294.     DB    CR,LF,'284-6145'
  1295.     DB    CR,LF,'V21 V22 V22bis V23',0
  1296.  
  1297.     DB    '07 ' 
  1298.     DB    CR,LF,'Brisbane Commodore User Group'
  1299.      DB    CR,LF,'395-6725'
  1300.     DB    CR,LF,'V21 V22 V23',0
  1301.  
  1302.     DB     '07 ' 
  1303.     DB    CR,LF,'Brisbane MicroBee User Group'
  1304.     DB    CR,LF,'366-4833',0
  1305.  
  1306.     DB    '070'
  1307.     DB    CR,LF,'Cairns & District IBBS'
  1308.     DB    CR,LF,'51-1360',0
  1309.  
  1310.     DB    '075' 
  1311.     DB    CR,LF,'COM ONE'
  1312.     DB    CR,LF,'62-5150'
  1313.     DB    CR,LF,'V21'
  1314.     DB         CR,LF,'NOT SURE OF AREA CODE FOR THIS ONE',0
  1315.  
  1316.     DB    '07 ' 
  1317.     DB    CR,LF,'Commodore Computer Users Group'
  1318.     DB    CR,LF,'344-1833'
  1319.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1320.  
  1321.     DB    '077' 
  1322.     DB    CR,LF,'Comtel BBS'
  1323.     DB    CR,LF,'75-3636'
  1324.     DB    CR,LF,'V21 V22',0
  1325.  
  1326.      DB    '07 '
  1327.     DB    CR,LF,'CORPLEX'
  1328.     DB    CR,LF,'350-1300'
  1329.     DB    CR,LF,'Weekdays: 1800 - 0600  '
  1330.     DB    'Weekends: 24 Hours',0
  1331.  
  1332.     DB    '07 '
  1333.     DB    CR,LF,'Educational RBBS'
  1334.     DB    CR,LF,'266-3369'
  1335.      DB    CR,LF,'V21 V22 V22bis V23',0
  1336.  
  1337.     DB    '07 ' 
  1338.     DB    CR,LF,'Electric Dreams BBS'
  1339.      DB    CR,LF,'399-1322'
  1340.     DB    CR,LF,'V21 V23',0
  1341.  
  1342.     DB    '07 ' 
  1343.     DB    CR,LF,'Fix BBS'
  1344.     DB    CR,LF,'285-5814'
  1345.     DB    CR,LF,'V21 V23',0
  1346.  
  1347.     DB    '07 ' 
  1348.     DB    CR,LF,'Futex C-64'
  1349.     DB    CR,LF,'283-2034',0
  1350.  
  1351.     DB    '07 ' 
  1352.     DB    CR,LF,'Greenhorn Experimental'
  1353.     DB    CR,LF,'345-5010'
  1354.     DB    CR,LF,'V21 V22 V22bis V23',0
  1355.  
  1356.     DB    '07 ' 
  1357.     DB    CR,LF,'Hi-Tech CBBS'
  1358.     DB    CR,LF,'300-5235'
  1359.     DB    CR,LF,'V21 V22 V23',0
  1360.  
  1361.     DB    '07 '
  1362.      DB    CR,LF,'Kangaroo Point TAFE'
  1363.      DB    CR,LF,'393-1763'
  1364.      DB    CR,LF,'Weekdays: 0900 - 2200  '
  1365.      DB    'Weekends: 24 Hours',0
  1366.  
  1367.     DB    '079'
  1368.      DB    CR,LF,'Mackay High School BBS'
  1369.     DB    CR,LF,'51-4815'
  1370.      DB    CR,LF,'Weekdays: 1600 - 0730  '
  1371.      DB    'Weekends: 24 Hours',0
  1372.  
  1373.     DB    '070'
  1374.      DB    CR,LF,'Marlin-Coast BBS'
  1375.     DB    CR,LF,'51-7220'
  1376.      DB    CR,LF,'V21 V22 V22bis PEP',0
  1377.  
  1378.     DB    '07 '
  1379.      DB    CR,LF,'Midnight Express'
  1380.      DB    CR,LF,'350-2174'
  1381.      DB    CR,LF,'V21 V22 V22bis V23',0
  1382.  
  1383.     DB    '07 ' 
  1384.      DB    CR,LF,'Missing Link BBS'
  1385.     DB    CR,LF,'808-3094'
  1386.      DB    CR,LF,'V21 V22 V23',0
  1387.  
  1388.     DB    '07 '
  1389.      DB    CR,LF,'Ozforum'
  1390.      DB    CR,LF,'209-4294'
  1391.     DB    CR,LF,' V21'
  1392.      DB    CR,LF,'Weekdays: 1700 - 0700  '
  1393.      DB    'Weekends: 24 Hours',0
  1394.  
  1395.     DB    '07 ' 
  1396.      DB    CR,LF,'Redcliffe Library'
  1397.     DB    CR,LF,'283-0315'
  1398.      DB    CR,LF,'V21 V22 V22bis V23'
  1399.     DB    CR,LF,'Weekdays: After Hours  '
  1400.      DB    'Weekends: 24 Hours',0
  1401.  
  1402.     DB    '07 '
  1403.      DB    CR,LF,'Rock Cave BBS'
  1404.     DB    CR,LF,'395-1809',0
  1405.  
  1406.     DB    '075' 
  1407.      DB    CR,LF,'Sidecar Express BBS'
  1408.      DB    CR,LF,'46-3252'
  1409.     DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1410.  
  1411.     DB    '07 '
  1412.      DB    CR,LF,'Software 80 BBS'
  1413.     DB    CR,LF,'369-7103'
  1414.      DB    CR,LF,'V21'
  1415.      DB    CR,LF,'Weekdays: 1930 - 0800  '
  1416.      DB    'Sat 1430 - Mon 0800',0
  1417.  
  1418.     DB    '077'
  1419.      DB    CR,LF,'Sun City Opus'
  1420.     DB    CR,LF,'74-1552'
  1421.      DB    CR,LF,'V21 V22 V22bis V23',0
  1422.  
  1423.     DB    '071'
  1424.      DB    CR,LF,'Sunshine Coast Connection'
  1425.     DB    CR,LF,'44-2889'
  1426.      DB    CR,LF,'V21 V22'
  1427.      DB    CR,LF,'Daily: 2000 - 0800',0
  1428.  
  1429.     DB    '07 ' 
  1430.      DB    CR,LF,'TommorrowLand BBS'
  1431.     DB    CR,LF,'371-0944'
  1432.      DB    CR,LF,'V21 V22 V23',0
  1433.  
  1434.     DB    '076'
  1435.      DB    CR,LF,'Toowoomba RBBS'
  1436.      DB    CR,LF,'30-1762'
  1437.      DB    CR,LF,'V21'
  1438.      DB    CR,LF,'Daily: 2100 to 0630',0
  1439.  
  1440.     DB    '07 '
  1441.      DB    CR,LF,'TurboLink Australia'
  1442.      DB    CR,LF,'262-1414',0
  1443.  
  1444.     DB    '076'
  1445.      DB    CR,LF,'Youth Extension Service (Toowoomba)'
  1446.      DB    CR,LF,'39-1790'
  1447.      DB    CR,LF,'V21 V23',0
  1448.  
  1449.  
  1450.  
  1451. ;           ******* SOUTH AUSTRALIA *******
  1452.  
  1453.  
  1454.     DB    '08 ' 
  1455.      DB    CR,LF,'Adam Link BBS'
  1456.     DB    CR,LF,'270-2713'
  1457.      DB    CR,LF,'V21 V22 V22bis V23',0
  1458.  
  1459.      DB    '08 '
  1460.      DB    CR,LF,'Adelaide MicroBee BBS'
  1461.      DB    CR,LF,'212-6569'
  1462.      DB    CR,LF,'V21',0
  1463.  
  1464.     DB    '08 ' 
  1465.      DB    CR,LF,'Aquarium BBS'
  1466.     DB    CR,LF,'270-4341'
  1467.      DB    CR,LF,'V21 V22 V22bis V23',0
  1468.  
  1469.     DB    '08 '
  1470.      DB    CR,LF,'Burning Bush'
  1471.      DB    CR,LF,'272-8405',0
  1472.  
  1473.     DB     '08 '
  1474.      DB    CR,LF,'Cadzow Fido'
  1475.     DB    CR,LF,'79-3091'
  1476.      DB    CR,LF,'V21 V23',0
  1477.  
  1478.     DB    '08 ' 
  1479.      DB    CR,LF,'Club Opus CBCS'
  1480.     DB    CR,LF,'263-5181'
  1481.      DB    CR,LF,'V22 V22bis V23',0
  1482.  
  1483.     DB    '08 ' 
  1484.      DB    CR,LF,'Multiple System BBS'
  1485.     DB    CR,LF,'255-5116'
  1486.      DB    CR,LF,'V21 V22 V22bis V23',0
  1487.  
  1488.     DB    '08 ' 
  1489.      DB    CR,LF,'Nexus Education Dept BBS'
  1490.     DB    CR,LF,'243-2477'
  1491.      DB    CR,LF,'V21',0
  1492.  
  1493.      DB    '08 '
  1494.      DB    CR,LF,'Oracle PC-Network'
  1495.      DB    CR,LF,'260-6222'
  1496.      DB    CR,LF,'V21 V22 V22bis V23',0
  1497.  
  1498.     DB    '08 '
  1499.      DB    CR,LF,'S A C BBS'
  1500.      DB    CR,LF,'387-0249'
  1501.      DB    CR,LF,'V21 V22 V23 V23ORG B103 B212',0
  1502.  
  1503.     DB    '08 '
  1504.      DB    CR,LF,'Sorcerer Users Group BBS'
  1505.     DB    CR,LF,'260-6576'
  1506.     DB    CR,LF,'V21',0
  1507.  
  1508.     DB    '08 ' 
  1509.      DB    CR,LF,'The IDN Board'
  1510.      DB    CR,LF,'352-2252'
  1511.      DB    CR,LF,'V21 V22 V22bis',0
  1512.  
  1513.     DB    '08 '
  1514.      DB    CR,LF,'The Olympic Board'
  1515.     DB    CR,LF,'265-4232',0
  1516.  
  1517.     DB    '08 ' 
  1518.      DB    CR,LF,'The Postie BBS'
  1519.     DB    CR,LF,'347-1046'
  1520.      DB    CR,LF,'V21 V22 V22bis V23',0
  1521.  
  1522.     DB    '08 '
  1523.      DB    CR,LF,'Trivia BBS'
  1524.     DB    CR,LF,'377-0049'
  1525.      DB    CR,LF,'V21'
  1526.      DB    CR,LF,'Weekdays: 1800 - 0800  '
  1527.      DB    'Sat 1400 - Mon 0800',0
  1528.  
  1529.                    
  1530. ;           ******* WESTERN AUSTRALIA *******
  1531.  
  1532.  
  1533.  
  1534.     DB    '09 ' 
  1535.      DB    CR,LF,'Amiga Mouse BBS'
  1536.     DB    CR,LF,'310-3998'
  1537.      DB    CR,LF,'V21 V22 V22bis V23'
  1538.      DB    CR,LF,'Daily: 2030 - 0800',0
  1539.  
  1540.     DB    '09 '
  1541.      DB    CR,LF,'AMSNet BBS'
  1542.     DB    CR,LF,'453-3590'
  1543.      DB    CR,LF,'V21 V22 V22bis V23',0
  1544.  
  1545.     DB    '09 '
  1546.      DB    CR,LF,'Bit-Board'
  1547.     DB    CR,LF,'417-3706'
  1548.      DB    CR,LF,'V21 V22 V22bis V23',0
  1549.  
  1550.     DB    '09 ' 
  1551.      DB    CR,LF,'Computex BBS'
  1552.     DB    CR,LF,'447-0522',0
  1553.  
  1554.     DB    '090'
  1555.      DB    CR,LF,'Kalgoorlie College RCP/M'
  1556.     DB    CR,LF,'21-7755'
  1557.      DB    CR,LF,'V21 V22 V22bis V23',0
  1558.  
  1559.     DB    '09 '
  1560.      DB    CR,LF,'Kardinya Turbo BBS'
  1561.     DB    CR,LF,'331-1695'
  1562.      DB    CR,LF,'V21 V23',0
  1563.  
  1564.     DB    '09 '
  1565.      DB    CR,LF,'Lightning BBS Line 1'
  1566.     DB    CR,LF,'275-8225'
  1567.      DB    CR,LF,'V22 V22bis B212 PEP'
  1568.  
  1569.     DB    '09 '
  1570.      DB    CR,LF,'Lightning BBS Line 2'
  1571.     DB    CR,LF,'275-7900'
  1572.      DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1573.  
  1574.     DB    '09 ' 
  1575.      DB    CR,LF,'Murdoch University ES-BBS1'
  1576.     DB    CR,LF,'332-2604'
  1577.      DB    CR,LF,'V21',0
  1578.  
  1579.     DB    '09 '
  1580.      DB    CR,LF,'Nemo 3'
  1581.     DB    CR,LF,'370-3333'
  1582.      DB    CR,LF,'V21 V22 V22bis V23',0
  1583.  
  1584.     DB    '09 '
  1585.      DB    CR,LF,'Nemo Games Machine'
  1586.     DB    CR,LF,'370-2666'
  1587.      DB    CR,LF,'V21 V22 V22bis V23',0
  1588.  
  1589.     DB    '09 '
  1590.      DB    CR,LF,'Nemo Multiple BBS RAPL'
  1591.      DB    CR,LF,'370-1855'
  1592.      DB    CR,LF,'V21 V22 V22bis V23',0
  1593.  
  1594.     DB    '09 ' 
  1595.      DB    CR,LF,'Oasis ST BBS'
  1596.     DB    CR,LF,'383-1480'
  1597.      DB    CR,LF,'V21 V22',0
  1598.  
  1599.     DB    '09 '
  1600.      DB    CR,LF,'Omen III RTRS'
  1601.     DB    CR,LF,'276-2777'
  1602.      DB    CR,LF,'V21 V22 V23',0
  1603.  
  1604.     DB    '09 ' 
  1605.      DB    CR,LF,'Omen Mini BBS'
  1606.      DB    CR,LF,'279-8555'
  1607.      DB    CR,LF,'V21 V22 V23',0
  1608.  
  1609.     DB    '09 '
  1610.      DB    CR,LF,'Pegasus BBS'
  1611.     DB    CR,LF,'242-2099'
  1612.      DB    CR,LF,'V21 V22 V22bis V23'
  1613.      DB    CR,LF,'Weekdays: 1700 - 0900  '
  1614.      DB    CR,LF,'Weekends: 24 Hours',0
  1615.  
  1616.     DB    '09 '
  1617.      DB    CR,LF,'Perth PC Users BBS'
  1618.     DB    CR,LF,'227-9229',0
  1619.  
  1620.     DB    '09 ' 
  1621.      DB    CR,LF,'Student Access Message Service'
  1622.     DB    CR,LF,'321-9721'
  1623.      DB    CR,LF,'V21 V22 V23',0
  1624.  
  1625.     DB    '09 '
  1626.      DB    CR,LF,'The Gathering BBS'
  1627.     DB    CR,LF,'272-4711'
  1628.      DB    CR,LF,'V21 V22 V23',0
  1629.  
  1630.     DB    '09 '
  1631.      DB    CR,LF,'The Turing Circus'
  1632.     DB    CR,LF,'385-2100'
  1633.      DB    CR,LF,'V21 V22 V23 B103 B212',0
  1634.  
  1635.     DB    '09 '
  1636.      DB    CR,LF,'Treasure Island'
  1637.     DB    CR,LF,'271-0471'
  1638.      DB    CR,LF,'V21 V22 V23',0
  1639.  
  1640.     DB    '09 '
  1641.      DB    CR,LF,'WA Atari BBS'
  1642.     DB    CR,LF,'306-2134'
  1643.      DB    CR,LF,'V21 V22',0
  1644.  
  1645.     DB    '09 '
  1646.      DB    CR,LF,'West Coast BBS'
  1647.      DB    CR,LF,'445-3080',0
  1648.  
  1649.     DB    '09 '
  1650.      DB    CR,LF,'Z-Node 62'
  1651.     DB    CR,LF,'450-0200',0
  1652.  
  1653.  
  1654.  
  1655. ;         ******* NORTHERN TERRITORY *******
  1656.  
  1657.  
  1658.     DB    '089'
  1659.      DB    CR,LF,'Outback RCPM'
  1660.     DB    CR,LF,'27-7111'
  1661.      DB    CR,LF,'V21 V23',0
  1662.  
  1663.  
  1664.  
  1665. ;               ******* TASMANIA *******
  1666.  
  1667.  
  1668.  
  1669.     DB     '002'
  1670.      DB    CR,LF,'Hobart Users Bulletin Board'
  1671.     DB    CR,LF,'43-5041'
  1672.      DB    CR,LF,'V21 V22 V23',0
  1673.  
  1674.     DB    '003' 
  1675.      DB    CR,LF,'Tassie Bread Board System'
  1676.      DB    CR,LF,'26-4248'
  1677.     DB    CR,LF,'V21 V22 V22bis V23',0
  1678.  
  1679.  
  1680.  
  1681. ;                    ******* NEW ZEALAND *******
  1682.  
  1683.  
  1684.     DB    '024'
  1685.     DB    CR,LF,'Southern Express!'
  1686.      DB    CR,LF,'877-440'
  1687.     DB    CR,LF,'(FROM AUSTRALIA 0011-64-24-877-440)'
  1688.      DB    CR,LF,'V21 V22 V23',0
  1689.  
  1690.  
  1691.  
  1692.  
  1693. ;                   ******* PAPUA NEW GUINEA *******
  1694.  
  1695.  
  1696.     DB    '675'
  1697.      DB    CR,LF,'PNG One'
  1698.     DB    CR,LF,'25-6984'
  1699.     DB    CR,LF,'(FROM AUSTRALIA 0011-675-25-6984)'
  1700.      DB    CR,LF,'V21 V22 V22bis V23 B103 B212',0
  1701.  
  1702.  
  1703. ;*****************************************************************************    
  1704.  
  1705.  
  1706. ;     YOU MAY WISH TO USE THIS AREA TO COMPILE YOUR OWN PERSONAL TELEPHONE
  1707. ;     DIRECTORY AND ADDRESS REGISTER. 
  1708.  
  1709. ;     EXAMPLE:
  1710.  
  1711.  
  1712.     DB     '   '                       ;LEAVE THIS AREA BLANK IF NOT NEEDED
  1713.  
  1714.     DB    CR,LF,LF,'Mike Greenhill'      ;Name Goes Here.
  1715.  
  1716.     DB    CR,LF,'ALL ROUND GOOD GUY'  ; Company.
  1717.  
  1718.     DB    CR,LF,'12 Church St. OATLANDS.' ;ADDRESS
  1719.  
  1720.     DB       CR,LF,'7120'                    ;POSTCODE
  1721.  
  1722.     DB    CR,LF,'(002) 54-1170  (voice)',0    ;Phone Number.
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729.     DB    0        ; End of all entries
  1730.  
  1731.     END
  1732.