home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s140 / 1.img / BIOS.DEF < prev    next >
Encoding:
Text File  |  1993-06-16  |  23.1 KB  |  553 lines

  1.  
  2.  
  3.                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  4.                     SOURCER DEFINITION FILE - BIOS VERSION
  5.                   ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  6.  
  7.      See notes at the end or refer to manual for Definition file formats.
  8.  
  9.    ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Section 1   CONTROL INFORMATION   ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  10.  
  11.    Enter any of the following options, starting in the 1st column
  12.     (for no options enter "none" )  Only the first letter of the
  13.     command is necessary.
  14.  
  15.    Analysis flag = xxxxx       Any flag letters A-Z can be used.  Upper
  16.                                 case indicates turn flag on, lower case
  17.                                 turns the flag off.   See manual for a
  18.                                 complete list of flags.
  19.                                   I - Inhibit graphics characters
  20.                                   L - use for MASM versions prior to 4.5
  21.                                   M - use for MASM versions prior to 4.5
  22.    Code style = xxx            Code style types include:
  23.                                 com, exe, fragment, zero start, 
  24.                                 device driver, or overlay
  25.    Drive = x                   Disk drive for output (letter a-z)
  26.    Format = xxx                Output format ASM or LST for source code or
  27.                                 listing output (LST is the default)
  28.    Go                          When the .def file has loaded, go
  29.    Header = xxxxxx xxxx xxxx   Enter the ascii header string (32 char max)
  30.    Input filename = xxxx       filename for input (may include disk & path)
  31.    Keep segments = xxx         When loading a file, use the file defined
  32.                                 segments (FILE), use the def file segments
  33.                                 in section 2 (DEF) or use both (BOTH)
  34.                                 NOTE: Specify this option prior to file input
  35.                                       BOTH is the default, used in most cases
  36.    Label = xxxxx               Select label type, Decimal, Zero fill,
  37.                                 Segment & offset, Letter segment & offset
  38.    Math on                     Use the math co-processor instruction set
  39.    None                        Use default commands only
  40.    Output filename = xxxx      filename for output (may include drive & path)
  41.    Passes = x                  Select the number of passes from 2 to 5
  42.    Remark = xxxxx              Select remarks to be included: All, None,
  43.                                 Data remarks only, Interrupts & I/O only,
  44.                                 Others only, Except Data, Except Interrupts,
  45.                                 Except Others
  46.    Segment display off         Turn off the display of segments on listings
  47.    Tabs off                    Only use spaces, no tabs
  48.    uP = xxxxx                  Select the uP from:
  49.                                 8088, 80186, 80286, P80286, V20/V30
  50.                                 or AUTO for automatic (default)
  51.    Vertical lines/page = xxx   For listings, select the number of lines per
  52.                                 page from 10 to 255 (default is 59)
  53.    Words to upper case         Set upper case style (lower case is default)
  54.    Xref = xx                   ON or OFF (selecting ON sets passes to 5)
  55.  
  56.  ------------------ control commands ------------------
  57. analysis flags = H  
  58. header = BIOS ROM Analysis
  59. uP = Maximum
  60. math on
  61. code style = exe
  62. xref = on
  63.  
  64.  
  65.  
  66.    ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Section 2    RANGE DEFINITION     ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  67.  
  68.    segment:offset = start processing location (hex)
  69.                       see note 3 at end on referencing loaded file segments
  70.    end offset     = ending location for segment
  71.    default ds, es = default used when not overwritten by in-line code
  72.    segment type   = auto  - code/data, full data resolving
  73.                     code  - code, limited data resolving
  74.                     data  - data, no code processed
  75.                     stack - stack, no code processed
  76.                     rauto - ROM code/data (same as "auto") in ROM
  77.                     rcode - ROM code (same as "code") in ROM
  78.  
  79.   begin    end  default  seg
  80.  seg:off   off  ds   es  type     remarks in this area are ignored
  81.  -------  ---- ---- ---- ----
  82. 0000:0000 004F 0000 0000 data       Interrupt vectors
  83. 0000:0400 04CF 0000 0000 data       BIOS data segment (duplicates)
  84. 0040:0000 0100 0000 0000 data       BIOS data segment
  85. 0050:0000 0001 0000 0000 data       BIOS data segment
  86. F000:8000 FFFF 0040 0040 rauto      Code segment and defaults
  87.  
  88.  
  89.    ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Section 3  REFERENCE DEFINITIONS ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  90.  
  91.    segment:offset = absolute location of item (hex)
  92.                      see note 3 at end on referencing loaded file segments
  93.  
  94.    typ            = type field
  95.                      DB = data byte
  96.                      DW = data word
  97.                      DD = double word
  98.                      DA = ascii text byte(s)
  99.                      DS = data structure
  100.                      SUB = subroutine reference (S can also be used)
  101.                      LOC = location reference   (L can also be used)
  102.                      FORCE = forced function    (F can also be used)
  103.  
  104.    options - indicate one or more options with a comma separator(s)
  105.  
  106.       data options:  , C xxx    comment number xxx (from 1 to 3FF)
  107.                      , EQU      treat label as an equate
  108.                      , DUP      duplicate same bytes/words
  109.                      , INDEX    replace a index of the same value
  110.                      , MULTI    multi-defined label
  111.                      , OSN      offset sub_xxx               (Sub Near)
  112.                      , OSF      offset sub_xxx, seg sub_xxx  (Sub Far)
  113.                      , OLN      offset loc_xxx               (Loc Near)
  114.                      , OLF      offset loc_xxx, seg loc_xxx  (Loc Far)
  115.                      , ODN      offset data_xxx              (Data Near)
  116.                      , ODF      offset data_xx, seg data_xx  (Data Far)
  117.                      , R xxxx   repeat 1 to FFFF, (FFFF bytes max)
  118.                                   (i.e. dw, R 4    indicates 8 bytes)
  119.                      , UNUSED   if item is never referenced, then do not use
  120.  
  121.        Location      , C xx     comment number xx (from 1 to FF)
  122.           options:   , EXT      external entry point to program
  123.                      , FAR      far procedure
  124.                      , NEAR     near procedure
  125.                                   Note: EXT, FAR & NEAR all reset the simulator
  126.                      , UNUSED   if item is never referenced, then do not use
  127.  
  128.        Subroutine    , C xx     comment number xx (from 1 to FF)
  129.           options:   , FAR      subroutine is defined as FAR
  130.                      , TERM     subroutine terminates (does not return to
  131.                                   caller)
  132.                      , UNUSED   if item is never referenced, then do not use
  133.  
  134.         Forced       , CODE     switch to code mode
  135.            options:  , DATA     switch to data mode
  136.                      , ENDP     force a endp to appear after instruction
  137.                      , AX=xxxx  change the value of any simulation 
  138.                                   register ax/bx/cx/dx/bp/si/di/sp/ds/es/ss
  139.                      , EAx      LEA instruction's reference item type
  140.                                   EAS for sub, EAL for location, EAD for data
  141.                                   optional segment follows
  142.                      , Ox       convert immediate value to offset 
  143.                                   OS for sub, OL for location, OD for data
  144.                                   optional segment follows (cs segment default)
  145.                      , REG      display the internal simulation registers
  146.  
  147.                              Forced index table analysis for calls & jumps
  148.                      , SN       table type "offset sub_xx"
  149.                      , SF       table type "offset sub_xxx, seg sub_xxx"
  150.                      , LN       table type "offset loc_xx"
  151.                      , LF       table type "offset loc_xxx, seg loc_xxx"
  152.                              format: "sega:xxxx  f, sn 1234:22 34"
  153.                                 where 1234:22 is the location of the table
  154.                                 with 34h entries
  155.  
  156.    label field    = enter label up to 15 digits long (label ignored for forced
  157.                       functions; do not place a comma before or inside label)
  158.  
  159.    comment field  = a short comment can be included here (64 characters max)
  160.                     if a semi-colon appears, the balance of the line is ignored
  161.  
  162.  
  163.  seg:off type     options & label        optional short comment
  164.  -------  -- ------------------------- --------------------------
  165. 0000:0000 dw         vector_0h_off   Divide error  ; Interrupt vector references
  166. 0000:0002 dw         vector_0h_seg
  167. 0000:0004 dw         vector_1h_off   Single Step
  168. 0000:0006 dw         vector_1h_seg
  169. 0000:0008 dw         vector_2h_off   NMI
  170. 0000:000A dw         vector_2h_seg
  171. 0000:000C dw         vector_3h_off   Debug
  172. 0000:000E dw         vector_3h_seg
  173. 0000:0010 dw         vector_4h_off   Overflow
  174. 0000:0012 dw         vector_4h_seg
  175. 0000:0014 dw         vector_5h_off   Print Screen
  176. 0000:0016 dw         vector_5h_seg
  177. 0000:0018 dw         vector_6h_off
  178. 0000:001A dw         vector_6h_seg
  179. 0000:001C dw         vector_7h_off
  180. 0000:001E dw         vector_7h_seg
  181. 0000:0020 dw         vector_8h_off   Timer Ticks
  182. 0000:0022 dw         vector_8h_seg
  183. 0000:0024 dw         vector_9h_off   Keyboard
  184. 0000:0026 dw         vector_9h_seg
  185. 0000:0028 dw         vector_Ah_off
  186. 0000:002A dw         vector_Ah_seg
  187. 0000:002C dw         vector_Bh_off   Serial
  188. 0000:002E dw         vector_Bh_seg
  189. 0000:0030 dw         vector_Ch_off   Serial
  190. 0000:0032 dw         vector_Ch_seg
  191. 0000:0034 dw         vector_Dh_off   Disk
  192. 0000:0036 dw         vector_Dh_seg
  193. 0000:0038 dw         vector_Eh_off   Diskette
  194. 0000:003A dw         vector_Eh_seg
  195. 0000:003C dw         vector_Fh_off   Bad Interrupt
  196. 0000:003E dw         vector_Fh_seg
  197. 0000:0040 dw         vectr_10h_off   Video
  198. 0000:0042 dw         vectr_10h_seg
  199. 0000:0044 dw         vectr_11h_off   Equipment
  200. 0000:0046 dw         vectr_11h_seg
  201. 0000:0048 dw         vectr_12h_off   Memory Size
  202. 0000:004A dw         vectr_12h_seg
  203. 0000:004C dw         vectr_13h_off   Disk Services
  204. 0000:004E dw         vectr_13h_seg
  205. 0000:0074 dw, U      video_hdw_off
  206. 0000:0076 dw, U      video_hdw_seg
  207. 0000:0078 dw, U      disk_parm_off
  208. 0000:007A dw, U      disk_parm_seg
  209. 0000:007C dw, U      graph_tbl_off
  210. 0000:007E dw, U      graph_tbl_seg
  211. 0000:0100 dw, U      vectr_40h_off
  212. 0000:0102 dw, U      vectr_40h_seg
  213. 0000:0104 dw, U      hdsk1_parm_off
  214. 0000:0106 dw, U      hdsk1_parm_seg
  215. 0000:010C dw, U      vid_g_tbl_off
  216. 0000:010E dw, U      vid_g_tbl_seg
  217. 0000:0118 dw, U      hdsk2_parm_off
  218. 0000:011A dw, U      hdsk2_parm_seg
  219. 0000:01D8 dw, U      vectr_76h_off
  220. 0000:01DA dw, U      vectr_76h_seg
  221. 0000:0400 dw         @rs232_port_1_        Duplicates (see 0040:0000 for full information)
  222. 0000:0402 dw, U      @rs232_port_2_
  223. 0000:0404 dw, U      @rs232_port_3_
  224. 0000:0406 dw, U      @rs232_port_4_
  225. 0000:0408 dw, U      @prn_port_1_
  226. 0000:040A dw, U      @prn_port_2_
  227. 0000:040C dw, U      @prn_port_3_
  228. 0000:040E dw, U      BIOS_data_seg_
  229. 0000:0410 dw, U      equip_bits_
  230. 0000:0412 db, U      init_test_flag_
  231. 0000:0413 dw, U      main_ram_size_
  232. 0000:0415 dw, U      chan_io_size_
  233. 0000:0417 db, U      keybd_flags_1_
  234. 0000:0418 db, U      keybd_flags_2_
  235. 0000:0419 db, U      keybd_alt_num_
  236. 0000:041A dw, U      keybd_q_head_
  237. 0000:041C dw, U      keybd_q_tail_
  238. 0000:041E dw, R 10   keybd_queue_
  239. 0000:043C dw, U      keybd_q_end_
  240. 0000:043E db, U      dsk_recal_stat_
  241. 0000:043F db, U      dsk_motor_stat_
  242. 0000:0440 db, U      dsk_motor_tmr_
  243. 0000:0441 db, U      dsk_ret_code_
  244. 0000:0442 db, U      dsk_status_1_
  245. 0000:0443 db, U      dsk_status_2_
  246. 0000:0444 db, U      dsk_status_3_
  247. 0000:0445 db, U      dsk_status_4_
  248. 0000:0446 db, U      dsk_status_5_
  249. 0000:0447 db, U      dsk_status_6_
  250. 0000:0448 db, U      dsk_status_7_
  251. 0000:0448 db, U      dsk_ctrl_last_
  252. 0000:0449 db, U      video_mode_
  253. 0000:044A dw, U      video_columns_
  254. 0000:044C dw, U      video_buf_siz_
  255. 0000:044E dw, U      video_segment_
  256. 0000:0450 dw, U      vid_curs_pos0_
  257. 0000:0452 dw, U      vid_curs_pos1_
  258. 0000:0454 dw, U      vid_curs_pos2_
  259. 0000:0456 dw, U      vid_curs_pos3_
  260. 0000:0458 dw, U      vid_curs_pos4_
  261. 0000:045A dw, U      vid_curs_pos5_
  262. 0000:045C dw, U      vid_curs_pos6_
  263. 0000:045E dw, U      vid_curs_pos7_
  264. 0000:0460 dw, U      vid_curs_mode_
  265. 0000:0462 db, U      video_page_
  266. 0000:0463 dw, U      @video_port_
  267. 0000:0465 db, U      video_mode_reg_
  268. 0000:0466 db, U      video_color_
  269. 0000:0467 dw, U      @gen_io_ptr_
  270. 0000:0469 dw, U      @gen_io_seg_
  271. 0000:046B db, U      gen_int_occurd_
  272. 0000:046C dw, U      timer_low_
  273. 0000:046E dw, U      timer_hi_
  274. 0000:0470 db, U      timer_rolled_
  275. 0000:0471 db, U      keybd_break_
  276. 0000:0472 dw, U      warm_boot_flag_
  277. 0000:0474 db, U      hdsk_status_1_
  278. 0000:0475 db, U      hdsk_count_
  279. 0000:0476 db, U      hdsk_head_ctrl_
  280. 0000:0477 db, U      hdsk_ctrl_port_
  281. 0000:0478 db, U      prn_timeout_1_
  282. 0000:0479 db, U      prn_timeout_2_
  283. 0000:047A db, U      prn_timeout_3_
  284. 0000:047B db, U      prn_timeout_4_
  285. 0000:047C db, U      rs232_timeout1_
  286. 0000:047D db, U      rs232_timeout2_
  287. 0000:047E db, U      rs232_timeout3_
  288. 0000:047F db, U      rs232_timeout4_
  289. 0000:0480 dw, U      @keybd_begin_
  290. 0000:0482 dw, U      @keybd_end_
  291. 0000:0484 db, U      video_rows_
  292. 0000:0485 dw, U      video_pixels_
  293. 0000:0487 db, U      video_options_
  294. 0000:0488 db, U      video_switches_
  295. 0000:0489 db, U      video_1_resrvd_
  296. 0000:048A db, U      video_2_resrvd_
  297. 0000:048B db, U      dsk_data_rate_
  298. 0000:048C db, U      hdsk_status_2_
  299. 0000:048D db, U      hdsk_error_
  300. 0000:048E db, U      hdsk_int_flags_
  301. 0000:048F db, U      hdsk_options_
  302. 0000:0490 db, U      hdsk0_media_st_
  303. 0000:0491 db, U      hdsk1_media_st_
  304. 0000:0492 db, U      hdsk0_start_st_
  305. 0000:0493 db, U      hdsk1_start_st_
  306. 0000:0494 db, U      hdsk0_cylinder_
  307. 0000:0495 db, U      hdsk1_cylinder_
  308. 0000:0496 db, U      keybd_flags_3_
  309. 0000:0497 db, U      keybd_flags_4_
  310. 0000:0498 dw, U      @timer_waitoff_
  311. 0000:049A dw, U      @timer_waitseg_
  312. 0000:049C dw, U      timer_clk_low_
  313. 0000:049E dw, U      timer_clk_hi_
  314. 0000:04A0 dw, U      timer_clk_flag_
  315. 0000:04A1 db, U      lan_1_
  316. 0000:04A2 db, U      lan_2_
  317. 0000:04A3 db, U      lan_3_
  318. 0000:04A4 db, U      lan_4_
  319. 0000:04A5 db, U      lan_5_
  320. 0000:04A6 db, U      lan_6_
  321. 0000:04A7 db, U      lan_7_
  322. 0000:04A8 dd, U      @video_parmtbl_
  323. 0000:04AC dd, U      @video_sv1area_
  324. 0000:04B0 dd, U      @video_txt_tbl_
  325. 0000:04B4 dd, U      @vid_grph_tbl_
  326. 0000:04B8 dd, U      @video_sv2area_
  327. 0000:04CE dw, U      days_since1_80_
  328. 0000:0500 db, U      prn_scrn_stat_a
  329. 0000:D8A8 dw, U      GDT_info_tbl
  330. 0000:D8B0 dw, U      IDT_info_tbl
  331. 0000:D8FA dw, U      GDT_stack_1
  332. 0000:D8FC dw, U      GDT_stack_2
  333. 0040:0000 dw, C 01   @rs232_port_1         ; Start of primary BIOS RAM
  334. 0040:0002 dw         @rs232_port_2
  335. 0040:0004 dw         @rs232_port_3
  336. 0040:0006 dw         @rs232_port_4
  337. 0040:0008 dw, C 02   @prn_port_1
  338. 0040:000A dw         @prn_port_2
  339. 0040:000C dw         @prn_port_3
  340. 0040:000E dw, C 8A   BIOS_data_seg
  341. 0040:0010 dw, C 03   equip_bits
  342. 0040:0012 db, C 04   init_test_flag
  343. 0040:0013 dw, C 05   main_ram_size
  344. 0040:0015 dw, C 06   chan_io_size
  345. 0040:0017 db, C 07   keybd_flags_1
  346. 0040:0018 db, C 08   keybd_flags_2
  347. 0040:0019 db, C 09   keybd_alt_num
  348. 0040:001A dw, C 0A   keybd_q_head
  349. 0040:001C dw, C 0B   keybd_q_tail
  350. 0040:001E dw, R 10, C 0C  keybd_queue
  351. 0040:003E db, C 0E   dsk_recal_stat
  352. 0040:003F db, C 0F   dsk_motor_stat
  353. 0040:0040 db, C 10   dsk_motor_tmr
  354. 0040:0041 db, C 11   dsk_ret_code
  355. 0040:0042 db, C 12   dsk_status_1
  356. 0040:0043 db         dsk_status_2
  357. 0040:0044 db         dsk_status_3
  358. 0040:0045 db         dsk_status_4
  359. 0040:0046 db         dsk_status_5
  360. 0040:0047 db         dsk_status_6
  361. 0040:0048 db         dsk_status_7
  362. 0040:0049 db, C 14   video_mode
  363. 0040:004A dw, C 15   video_columns
  364. 0040:004C dw, C 16   video_buf_siz
  365. 0040:004E dw, C 17   video_segment
  366. 0040:0050 dw, C 18   vid_curs_pos0
  367. 0040:0052 dw, C 19   vid_curs_pos1
  368. 0040:0054 dw, C 1A   vid_curs_pos2
  369. 0040:0056 dw, C 1B   vid_curs_pos3
  370. 0040:0058 dw, C 1C   vid_curs_pos4
  371. 0040:005A dw, C 1D   vid_curs_pos5
  372. 0040:005C dw, C 1E   vid_curs_pos6
  373. 0040:005E dw, C 1F   vid_curs_pos7
  374. 0040:0060 dw, C 20   vid_curs_mode
  375. 0040:0062 db, C 21   video_page
  376. 0040:0063 dw, C 22   @video_port
  377. 0040:0065 db, C 23   video_mode_reg
  378. 0040:0066 db, C 24   video_color
  379. 0040:0067 dw, C 25   @gen_io_ptr
  380. 0040:0069 dw, C 26   @gen_io_seg
  381. 0040:006B db, C 27   gen_int_occured
  382. 0040:006C dw, C 28   timer_low
  383. 0040:006E dw, C 29   timer_hi
  384. 0040:0070 db, C 2A   timer_rolled
  385. 0040:0071 db, C 2B   keybd_break
  386. 0040:0072 dw, C 2C   warm_boot_flag
  387. 0040:0074 db, C 2D   hdsk_status_1
  388. 0040:0075 db, C 2E   hdsk_count
  389. 0040:0076 db, C 2F   hdsk_head_ctrl
  390. 0040:0077 db, C 30   hdsk_ctrl_port
  391. 0040:0078 db, C 31   prn_timeout_1
  392. 0040:0079 db, C 32   prn_timeout_2
  393. 0040:007A db         prn_timeout_3
  394. 0040:007B db         prn_timeout_4
  395. 0040:007C db, C 33   rs232_timeout_1
  396. 0040:007D db, C 34   rs232_timeout_2
  397. 0040:007E db         rs232_timeout_3
  398. 0040:007F db         rs232_timeout_4
  399. 0040:0080 dw, C 35   @keybd_begin
  400. 0040:0082 dw, C 36   @keybd_end
  401. 0040:0084 db, C 37   video_rows
  402. 0040:0085 dw, C 38   video_pixels
  403. 0040:0087 db, C 39   video_options
  404. 0040:0088 db, C 3A   video_switches
  405. 0040:0089 db, C 3B   video_1_reservd
  406. 0040:008A db, C 3C   video_2_reservd
  407. 0040:008B db, C 3D   dsk_data_rate
  408. 0040:008C db, C 3E   hdsk_status_2
  409. 0040:008D db, C 3F   hdsk_error
  410. 0040:008E db, C 40   hdsk_int_flags
  411. 0040:008F db, C 41   hdsk_options
  412. 0040:0090 db, C 42   hdsk0_media_st
  413. 0040:0091 db, C 43   hdsk1_media_st
  414. 0040:0092 db, C 44   hdsk0_start_st
  415. 0040:0093 db, C 45   hdsk1_start_st
  416. 0040:0094 db, C 46   hdsk0_cylinder
  417. 0040:0095 db, C 47   hdsk1_cylinder
  418. 0040:0096 db, C 48   keybd_flags_3
  419. 0040:0097 db, C 49   keybd_flags_4
  420. 0040:0098 dw, C 4A   @timer_wait_off
  421. 0040:009A dw, C 4B   @timer_wait_seg
  422. 0040:009C dw, C 4C   timer_clk_low
  423. 0040:009E dw, C 4D   timer_clk_hi
  424. 0040:00A0 dw, C 4E   timer_clk_flag
  425. 0040:00A1 db, C 4F   lan_1
  426. 0040:00A2 db         lan_2
  427. 0040:00A3 db         lan_3
  428. 0040:00A4 db         lan_4
  429. 0040:00A5 db         lan_5
  430. 0040:00A6 db         lan_6
  431. 0040:00A7 db         lan_7
  432. 0040:00A8 dd, C 51   @video_parm_tbl
  433. 0040:00AC dd, C 52   @video_sav1area
  434. 0040:00B0 dd, C 53   @video_text_tbl
  435. 0040:00B4 dd, C 54   @vid_grph_tbl
  436. 0040:00B8 dd, C 55   @video_sav2area
  437. 0040:00CE dw, U,C 56 days_since_1_80
  438. 0040:0100 db, U      prn_scrn_stat_b
  439. 0050:0000 db, C 57   prn_scrn_stat
  440. B800:0000 d?, U      video_dply_area
  441. C000:0000 dw, U      rom_chk_word
  442. C000:0002 db, U      rom_chk_size
  443. F000:EFC7 db, C 5D   dsk_info_1             ; Start of ROM BIOS data areas
  444. F000:EFC8 db, C 5E   dsk_info_2
  445. F000:EFC9 db, C 5F   dsk_motor_delay
  446. F000:EFCA db, C 60   dsk_sectr_bytes
  447. F000:EFCB db, C 61   dsk_sector_trac
  448. F000:EFCC db, C 62   dsk_head_gap
  449. F000:EFCD db, C 63   dsk_data_length
  450. F000:EFCE db, C 64   dsk_format_gap
  451. F000:EFCF db, C 65   dsk_format_byte
  452. F000:EFD0 db, C 66   dsk_settlg_time
  453. F000:EFD1 db, C 67   dsk_startup_tim
  454. F000:F0A4 db, R 10, C 68  video_hdwr_tbl1
  455. F000:F0B4 db, R 10, C 69  video_hdrw_tbl2
  456. F000:F0C4 db, R 10, C 6A  video_hdwr_tbl3
  457. F000:F0D4 db, R 10, C 6B  video_hdwr_tbl4
  458. F000:F0E4 dw, C 6C   video_buf_size1
  459. F000:F0E6 dw, C 6D   video_buf_size2
  460. F000:F0E8 dw, C 6E   video_buf_size3
  461. F000:F0EA dw, C 6F   video_buf_size4
  462. F000:F0EC db, R 8, C 70  video_columntbl
  463. F000:F0F4 db, R 8, C 71  video_hdwr_mode
  464. F000:E13D dw, C 72   hdsk_cylinders
  465. F000:E13F db, C 73   hdsk_heads
  466. F000:E140 dw, C 74   hdsk_lo_wrt_cyl
  467. F000:E142 dw, C 75   hdsk_precompcyl
  468. F000:E144 db, C 76   hdsk_err_length
  469. F000:E145 db, C 77   hdsk_misl_bits
  470. F000:E146 db, C 78   hdsk_timeout
  471. F000:E147 db, C 79   hdsk_fmt_timout
  472. F000:E148 db, C 7A   hdsk_chk_timout
  473. F000:E149 dw, C 7B   hdsk_parkng_cyl
  474. F000:E14B db, C 7C   hdsk_sectr_trac
  475. F000:E14C db, C 7D   hdsk_unused
  476. F000:E14D db, R 0010,C 7E  hdsk_tables
  477. F000:FA6E db, R 400,C 7F   video_char_tbl
  478. F000:FEF3 dw, oln,R 0015,C 87  int_vec_table
  479. F000:FF1D dw, odn,R 2          int_data_table
  480. F000:FF21 dw, R 1          video_ptr
  481. F000:FF23 dw, oln,R 0008   int_vec_table_2
  482. F000:8000 da, R 004D       begin_text
  483. F000:FFF5 da, R 9, C 88    rom_versn_date
  484. F000:FFFE db, C 89   model_type
  485. F000:FFFF db         model_sub_type
  486.  
  487. F000:EC5C loc, Near, C 05 int_5_prn_scrn
  488. F000:FF54 loc, Ext,  C 2A int_5_entry
  489. F000:EB43 loc, Near, C 06 int_6_badopcode
  490. F000:EAEB loc, Near, C 07 int_7_unused
  491. F000:ECE7 loc, Near, C 08 int_8_timer
  492. F000:FEA5 loc, Ext,  C 2A int_8_entry
  493. F000:A2AA loc, Near, C 09 int_9_keyboard
  494. F000:E987 loc, Ext,  C 2A int_9_entry
  495. F000:E831 loc, Near, C 0E int_0Eh_floppy
  496. F000:EF57 loc, Ext,  C 2A int_0Eh_entry
  497. F000:8D3E loc, Near, C 10 int_10h_video
  498. F000:F065 loc, Ext,  C 2A int_10h_entry
  499. F000:F84D loc, Near, C 11 int_11h_equip
  500. F000:F841 loc, Near, C 12 int_12h_memsiz
  501. F000:BD66 loc, Near, C 13 int_13h_floppy
  502. F000:EC59 loc, Ext,  C 2A int_13h_entry
  503. F000:F8E3 loc, Near, C 14 int_14h_RS232
  504. F000:E739 loc, Ext,  C 2A int_14h_entry
  505. F000:8D0F loc, Near, C 15 int_15h_servics
  506. F000:F859 loc, Ext,  C 2A int_15h_entry
  507. F000:A828 loc, Near, C 16 int_16h_keybd
  508. F000:E82E loc, Ext,  C 2A int_16h_entry
  509. F000:F85E loc, Near, C 17 int_17h_printer
  510. F000:EFD2 loc, Ext,  C 2A int_17h_entry
  511. F000:E005 loc, Near, C 18 int_18h_basic
  512. F000:E000 loc, Ext,  C 2A int_18h_entry
  513. F000:F758 loc, Near, C 19 int_19h_bootup
  514. F000:E6F2 loc, Ext,  C 2A int_19h_entry
  515. F000:ED39 loc, Near, C 1A int_1Ah_RTC
  516. F000:FE6E loc, Ext,  C 2A int_1Ah_entry
  517. F000:EA42 loc, Near, C 1E int_70h_clock
  518. F000:EED2 loc, Near, C 1F int_71h_LAN
  519. F000:EEDB loc, Near, C 23 int_75h_80287
  520. F000:E845 loc, Near, C 24 int_76h_hddone
  521. F000:8D0C loc, Near, C 25 int_77h
  522. F000:FF53 loc, Near, C 00 int_return           ; User interrupts (set to an iret intruction)
  523. F000:EA97 loc, Near, C 27 int_unused           ; Unused (bios unsupported) interrupts
  524. F000:CC7A loc, Near, C 29 system_reset
  525. F000:FFF0 loc, Ext,  C 2A power_on_reset
  526. FFFF:0000 loc, U          power_on_reset
  527.  
  528.  
  529.   Notes:
  530.      1) Must have at least one entry in each section to operate properly.
  531.           Use "none" if no entries are needed for a section.
  532.           Separate each section with at least one line with a space in
  533.           column 1.
  534.  
  535.      2) Order of entries within each section is unimportant.
  536.  
  537.      3) When a filename is specified in section 1, it is loaded and the
  538.           first 250 segments can be referenced as "sega" to "segz" and
  539.           "sgaa" to "sgaz" through to the 250th segment "sgio".  These can
  540.           be used anywhere a segment is required.  For example a location
  541.           label can be defined as:
  542.  
  543.                         6234:0124 loc, Ext, C 2  temp_value_a
  544.                   or:   segb:0124 loc, Ext, C 2  temp_value_a
  545.  
  546.           The second entry will use the 2nd segment within the loaded file)
  547.           An error will be generated if a segment is used beyond those 
  548.           specified by the file load (Consult manual for more information).
  549.  
  550.      4) Section 3 ignores blank lines or lines starting with a space in column
  551.           1, or the balance of a line where a semicolon occurs
  552.  
  553.