home *** CD-ROM | disk | FTP | other *** search
File List | 1997-03-07 | 2.8 KB | 85 lines |
- fs.lst Sourcer v6.51 7-Mar-97 4:23 am Page 1
-
-
- PAGE 59,132
-
- ;██████████████████████████████████████████████████████████████████████████
- ;██ ██
- ;██ FS ██
- ;██ ██
- ;██ Created: 4-Apr-84 ██
- ;██ Passes: 5 Analysis Options on: QRS ██
- ;██ ██
- ;██████████████████████████████████████████████████████████████████████████
-
- target EQU 'T1' ; Target assembler: TASM-1.0
-
- include srmacros.inc
-
-
- ; The following equates show data references outside the range of the program.
-
- = 0078 data_1e equ 78h ; (0000:0078=522h)
- = 007A data_2e equ 7Ah ; (0000:007A=0)
- = 1000 data_3e equ 1000h ;*(1000:1000=5Eh)
-
- seg_a segment byte public
- assume cs:seg_a, ds:seg_a
-
-
- org 100h
-
- fs proc far
-
- 44EB:0100 start:
- 44EB:0100 FA cli ; Disable interrupts
- 44EB:0101 33 C0 xor ax,ax ; Zero register
- 44EB:0103 8E D0 mov ss,ax
- 44EB:0105 BC C0B0 mov sp,0C0B0h
- 44EB:0108 FB sti ; Enable interrupts
- 44EB:0109 8E C0 mov es,ax
- 44EB:010B 26: C7 06 0078 012E mov word ptr es:data_1e,12Eh ; (0000:0078=522h)
- 44EB:0112 26: 8C 0E 007A mov es:data_2e,cs ; (0000:007A=0)
- 44EB:0117 ·BB 1000 mov bx,data_3e ; (1000:1000=5Eh)
- 44EB:011A 8E C3 mov es,bx
- 44EB:011C 33 DB xor bx,bx ; Zero register
- 44EB:011E B8 0201 mov ax,201h
- 44EB:0121 BA 0000 mov dx,0
- 44EB:0124 B9 0165 mov cx,165h
- 44EB:0127 CD 13 int 13h ; Disk dl=drive a ah=func 02h
- ; read sectors to memory es:bx
- ; al=#,ch=cyl,cl=sectr,dh=head
- 44EB:0129 EA 1000:0000 ;* jmp far ptr loc_1 ;*(1000:0000)
- 44EB:0129 EA db 0EAh
- 44EB:012A 0000 1000 dw 0, 1000h
- 44EB:012E CF 02 25 03 05 2A db 0CFh, 02h, 25h, 03h, 05h, 2Ah
- 44EB:0134 FF 50 83 13 04 db 0FFh, 50h, 83h, 13h, 04h
-
- fs endp
-
- fs.lst Sourcer v6.51 7-Mar-97 4:23 am Page 2
-
- seg_a ends
-
-
-
- end start
- fs.lst Sourcer v6.51 7-Mar-97 4:23 am Page 3
-
-
- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ CROSS REFERENCE - KEY ENTRY POINTS ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-
- seg:off type label
- ---- ---- ---- --------------------------------
- 44EB:0100 far start
-
- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Interrupt Usage Synopsis ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-
- Interrupt 13h : Disk dl=drive # ah=func xxh
- Interrupt 13h : ah=02h read sectors to memory es:bx
-
- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ I/O Port Usage Synopsis ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-
- No I/O ports used.
-
-