• Please review our updated Terms and Rules here

Is there an RX01 Emulator?

Hi Don,

I verified the cable by establishing continuity between IC pins on the RXV21 and the emulator board connections. (IC pin or resistors.)

Is there a test mode on the emulator where I can write back to the RXV21? I built two emulators and they both act the same. Only show the hard init when connected to the RXV21. Both emulators do everything as expected when connected to the serial monitor. List SD contents, etc.

len
 
Hi Don,

Not sure if this is a hint. WHen I write 40000 to 177170 I get back a 40002, no matter what I write I get the '2', it's like something is stuck and not shifting. I also get 0002 when reading from 177172


len
 
Hi Don,

Not sure if this is a hint. WHen I write 40000 to 177170 I get back a 40002, no matter what I write I get the '2', it's like something is stuck and not shifting. I also get 0002 when reading from 177172

len

Well, that is not even close to being correct. Here is the CSR (177170) read logic page from the RXV21 schematic:

Capture.jpg

Decoding the logic, here is what you should read back at 177170:

Code:
 =15= =14= =13= =12= =11= =10= =09= =08= =07= =06= =05= =04= =03= =02= =01= =00=
ERROR   0    0    0    1    X  HEAD DENS  TR   IE  DONE UNIT   X    X    X    0
ERROR, HEAD, DENS, TR, IE, UNIT should all read back zero after init (they are cleared). DONE should read back a one.
The bits marked '0' or '1' always come back in that state (they are hardwired). Bits marked 'X' can be either 0 or 1.

So a typical value you might read back will be 004040 (Bit11 set for RX211/RXV21, bit05 set for DONE).

If you write 123456 to the address 177170 do you read back 123456? I'm wondering if your ODT is not automatically
accessing the I/O page, and you need to access address 777170 (18b physical) or 17777170 (22b physical) instead?
I've never used the exact system you have, but based on my 11/44 22b system I need to access 177xxxxx to get to
the I/O page. Would not explain the behavior under CPU execution, however, as only the 16b address is needed then.

Don
 
Don,

Thanks so much!!! Using ODT I could access the controller at 777170. Session below from the serial monitor. I'll go back to the bootstrap now and see what other pain I can cause myself. ;)

len


Code:
Initialization complete.
RX: waiting for INIT to clear ... t=35470ms
RX: INIT has cleared t=35471ms
RX: INIT rx_xmit_es(0244)

RX: waiting for INIT to clear ... t=203588ms
RX: INIT has cleared t=203589ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT pos=6656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0401
RX: FILBUF unit=0 den=D
RX: waiting for INIT to clear ... t=707028ms
 
Hi Don,

I'm making some progress!!!

First several questions:

What tells the boot loader which floppy device to access?

Once the boot loader is started should the floppy load and boot? I am using your rt11.dsk image.

What options is that disk built with? Should it boot on my 11/23. Memory requirements, etc?

Update on my progress now.

I am trying both of the boot loaders, yours as posted in a previous message, and mine that I cleaned up. I assembled both of them to a binary file and load them using PDPGUI. Yours sits at 2000 and mine at 1000. When I run either of them the bootloader puts data in memory, but RT11 does not run. Looking at a memory dump it appears that the entry point is at 240? THen I 240G from ODT I get this:

Code:
@240g
?BOOT-U-I/O error




000720

Maybe I need to fire up SIMH and make a RT11 floppy for my configuration?

Any hints would be helpful. I've built RT11 and BSD2.11 for my 83. On that machine all my booting has been from the boot rom. THis is all new territory for me. Very cool territory might I add!

I really appreciate your help, and cool emulator.

73

len
 
Hi Don,

I'm making some progress!!!

First several questions:

What tells the boot loader which floppy device to access?

Once the boot loader is started should the floppy load and boot? I am using your rt11.dsk image.

What options is that disk built with? Should it boot on my 11/23. Memory requirements, etc?

Update on my progress now.

I am trying both of the boot loaders, yours as posted in a previous message, and mine that I cleaned up. I assembled both of them to a binary file and load them using PDPGUI. Yours sits at 2000 and mine at 1000. When I run either of them the bootloader puts data in memory, but RT11 does not run. Looking at a memory dump it appears that the entry point is at 240? THen I 240G from ODT I get this:

Code:
@240g
?BOOT-U-I/O error

000720

Maybe I need to fire up SIMH and make a RT11 floppy for my configuration?

Any hints would be helpful. I've built RT11 and BSD2.11 for my 83. On that machine all my booting has been from the boot rom. THis is all new territory for me. Very cool territory might I add!

I really appreciate your help, and cool emulator.

73

len

The bootloader code I provided is hardwired for Unit #0 (changing to Unit #1 is possible but requires a number of patches to writes to CSR 177170).

If it successfully reads the boot sectors off the floppy drive (loads into memory 0-1777(8)) it should autostart at location 0 (not 240(8) which is the opcode for a NOP). If you want to force the bootstrap to run do a: 0G

Starting at 240(8) could easily dump you into the bootstrap code that can't find the secondary bootstrap, and thus you get that message.

The RT11.DSK image should boot and run OK on your system. It boots and runs on both my 11/34 and 11/44.
 
Don, another question for you. I am trying to understand the schematics, but it might be easier just to ask. If I wanted to separate the arduino board from the RX Emulator shield, could you confirm what signals would need to be brought between them? I believe it might just be power and the signals on the 36 pin dual header? Or do I need other signals on the single headers? The schematic does not seem to show anything on these single headers, but I wanted to be sure since the BOM only shows the two of them as optional.

Thanks
Eugene
 
Hi Don,

Making progress! I did get RT11 booted several times tonight. It seems to be sporadic for some reason, maybe a good load 1 out of 20 times. When I do a DIR I get no listing, is that expected behavior? I thought I read that a while back in the thread.

Anyway, still playing and having a blast. Thanks for stepping me through this.

len
 
Hi Don,

Making progress! I did get RT11 booted several times tonight. It seems to be sporadic for some reason, maybe a good load 1 out of 20 times. When I do a DIR I get no listing, is that expected behavior? I thought I read that a while back in the thread.

Anyway, still playing and having a blast. Thanks for stepping me through this.

len

Here's what I get when I boot from that image, do a DIR, and run some other commands:

Code:
>>>b dy1

(Program)

RT-11SB  V05.07

.R MSCPCK

.date
?KMON-W-No date

.da 21-jan-2000

.dir
 21-Jan-2000
SWAP  .SYS    28P 21-Jan-2000    RT11SB.SYS    97P 21-Jan-2000
RT11FB.SYS   106P 21-Jan-2000    DL    .SYS     4P 21-Jan-2000
DU    .SYS    10P 21-Jan-2000    DX    .SYS     4P 21-Jan-2000
DY    .SYS     4P 21-Jan-2000    DZ    .SYS     4P 21-Jan-2000
RK    .SYS     3P 21-Jan-2000    LD    .SYS    11P 21-Jan-2000
LP    .SYS     2P 21-Jan-2000    LS    .SYS     5P 21-Jan-2000
NL    .SYS     2P 21-Jan-2000    PI    .SYS    60P 21-Jan-2000
SL    .SYS    17P 21-Jan-2000    SP    .SYS     7P 21-Jan-2000
VM    .SYS     3P 21-Jan-2000    PIP   .SAV    30P 21-Jan-2000
DIR   .SAV    20P 21-Jan-2000    DUP   .SAV    52P 21-Jan-2000
RESORC.SAV    35P 21-Jan-2000    HELP  .SAV   161P 21-Jan-2000
FORMAT.SAV    28P 21-Jan-2000    DUMP  .SAV    10P 21-Jan-2000
DATIME.SAV     4P 21-Jan-2000    EDIT  .SAV    19P 21-Jan-2000
TECO  .SAV    50P 21-Jan-2000    STRTSB.COM     1P 21-Jan-2000
MSCPCK.SAV     4P 21-Jan-2000
 29 Files, 781 Blocks
 193 Free blocks

.sho all

RT-11SB  V05.07
Booted from DY1:RT11SB

USR     is set SWAP
EXIT    is set SWAP
KMON    is set NOIND
MODE    is set NOSJ
TT      is set NOQUIET
ERROR   is set ERROR
SL      is set OFF
EDIT    is set KED
FORTRAN is set FORTRA
KMON nesting depth is 3

CLI is set DCL, CCL, UCL, NO UCF

PDP 11/44 Processor
3840KB of memory
FP11 Hardware Floating Point Unit
Extended Instruction Set (EIS)
Commercial Instruction Set (CIS)
Memory Management Unit
ECC Memory
Cache Memory
60 Hertz System Clock
KW11-P User Programmable Clock

FPU support

Device    Status                   CSR     Vector(s)
------    ------                   ---     ---------
  DL      Not installed           174400   160
  DU      Installed               172150   154
  DX      Not installed           177170   264
  DY      Resident                177170   264
  DZ      Not installed           000000
  RK      Not installed           177400   220
  LD      Installed               000000   000
  LP      Not installed           177514   200
  LS      Installed               176500   470 474 300 304
  NL      Installed               000000   000
  PI      Not installed           000000   000
  SL      Installed               000000   000
  SP      Installed               000000   110
  VM      Installed               177572   250

TT  (Resident)
DY  (Resident)
    DY1 = DK , SY
LD
SL
DU
VM
SP
LS
NL
13 free slots

Job  Name  Console Level State    Low    High  Impure
---  ----  ------- ----- -----    ---    ----  ------
 0   RESORC   0      0   Run     000000 137010 140514

No multi-terminal support

Address   Module    Words
-------   ------    -----
160000    IOPAGE     4096.
156542    DY          335.
137054    RMON       3995.
001000    ..BG..    24086.

No LD units mounted

.

If you do a DIR and get nothing/blank (just a dot? no directory read error message?) then that is not right (assuming the RT11.DSK file you have is valid, of course.
 
Last edited:
Don, another question for you. I am trying to understand the schematics, but it might be easier just to ask. If I wanted to separate the arduino board from the RX Emulator shield, could you confirm what signals would need to be brought between them? I believe it might just be power and the signals on the 36 pin dual header? Or do I need other signals on the single headers? The schematic does not seem to show anything on these single headers, but I wanted to be sure since the BOM only shows the two of them as optional.

Thanks
Eugene

Close, but not quite. Most of the signals and power/ground are on the 2x18 header. However there are a couple of inputs used on the center/upper 8p connector, and the 3 LEDs are driven from the left/upper 10p connector (with the board facing up and the USB connector on the left). The three LED signals are optional, but the two inputs (RUN, INIT) are not.

Don
 
Ahh. ok. that sounds doable. Just for clarification, I see how the LEDS are controlled with D10, D11, D12 on P4 (on the schematic). And RUN and INIT signals? Are D2 and D3 on P3. Correct?

And now for something completely different. What if I wanted to communicate with the RX emulator with another serial port on my PDP-8/e instead of a PC running USB. Lets say for the sake of argument I have a spare serial port board in my 8e. Can I connect it to one of the serial ports on the arduino. Then write a simple assembly program on the 8/e to route the console serial IO port to the other serial board connected to the RXE serial port? Like a little terminal program. Then if/when I need to mount/dismount disk images, etc. I just run this little terminal program using the other serial board and voila. no more PC/usb needed?

The question is what do you think would need to be done on the arduino code. Maybe just change the serial port from the one that runs the usb converter to one of the other ones?
thanks!
Eugene
 
Here's what I get when I boot from that image, do a DIR, and run some other commands:

Code:
>>>b dy1

(Program)

RT-11SB  V05.07

.R MSCPCK

.date
?KMON-W-No date

.da 21-jan-2000

.dir
 21-Jan-2000
SWAP  .SYS    28P 21-Jan-2000    RT11SB.SYS    97P 21-Jan-2000
RT11FB.SYS   106P 21-Jan-2000    DL    .SYS     4P 21-Jan-2000
DU    .SYS    10P 21-Jan-2000    DX    .SYS     4P 21-Jan-2000
DY    .SYS     4P 21-Jan-2000    DZ    .SYS     4P 21-Jan-2000
RK    .SYS     3P 21-Jan-2000    LD    .SYS    11P 21-Jan-2000
LP    .SYS     2P 21-Jan-2000    LS    .SYS     5P 21-Jan-2000
NL    .SYS     2P 21-Jan-2000    PI    .SYS    60P 21-Jan-2000
SL    .SYS    17P 21-Jan-2000    SP    .SYS     7P 21-Jan-2000
VM    .SYS     3P 21-Jan-2000    PIP   .SAV    30P 21-Jan-2000
DIR   .SAV    20P 21-Jan-2000    DUP   .SAV    52P 21-Jan-2000
RESORC.SAV    35P 21-Jan-2000    HELP  .SAV   161P 21-Jan-2000
FORMAT.SAV    28P 21-Jan-2000    DUMP  .SAV    10P 21-Jan-2000
DATIME.SAV     4P 21-Jan-2000    EDIT  .SAV    19P 21-Jan-2000
TECO  .SAV    50P 21-Jan-2000    STRTSB.COM     1P 21-Jan-2000
MSCPCK.SAV     4P 21-Jan-2000
 29 Files, 781 Blocks
 193 Free blocks

.sho all

RT-11SB  V05.07
Booted from DY1:RT11SB

USR     is set SWAP
EXIT    is set SWAP
KMON    is set NOIND
MODE    is set NOSJ
TT      is set NOQUIET
ERROR   is set ERROR
SL      is set OFF
EDIT    is set KED
FORTRAN is set FORTRA
KMON nesting depth is 3

CLI is set DCL, CCL, UCL, NO UCF

PDP 11/44 Processor
3840KB of memory
FP11 Hardware Floating Point Unit
Extended Instruction Set (EIS)
Commercial Instruction Set (CIS)
Memory Management Unit
ECC Memory
Cache Memory
60 Hertz System Clock
KW11-P User Programmable Clock

FPU support

Device    Status                   CSR     Vector(s)
------    ------                   ---     ---------
  DL      Not installed           174400   160
  DU      Installed               172150   154
  DX      Not installed           177170   264
  DY      Resident                177170   264
  DZ      Not installed           000000
  RK      Not installed           177400   220
  LD      Installed               000000   000
  LP      Not installed           177514   200
  LS      Installed               176500   470 474 300 304
  NL      Installed               000000   000
  PI      Not installed           000000   000
  SL      Installed               000000   000
  SP      Installed               000000   110
  VM      Installed               177572   250

TT  (Resident)
DY  (Resident)
    DY1 = DK , SY
LD
SL
DU
VM
SP
LS
NL
13 free slots

Job  Name  Console Level State    Low    High  Impure
---  ----  ------- ----- -----    ---    ----  ------
 0   RESORC   0      0   Run     000000 137010 140514

No multi-terminal support

Address   Module    Words
-------   ------    -----
160000    IOPAGE     4096.
156542    DY          335.
137054    RMON       3995.
001000    ..BG..    24086.

No LD units mounted

.

If you do a DIR and get nothing/blank (just a dot? no directory read error message?) then that is not right (assuming the RT11.DSK file you have is valid, of course.

Yep, just the dot. Tomorrow I will play with the emulator on my 11/73 processor. I did verify the the image booted and functioned properly running under simh.

I'm not sure if my rxv21 will work with my 73, given that I have a rev E board. Ill give it a try in either case.

Len
 
Ahh. ok. that sounds doable. Just for clarification, I see how the LEDS are controlled with D10, D11, D12 on P4 (on the schematic). And RUN and INIT signals? Are D2 and D3 on P3. Correct?

That is correct. The three LED outputs are simple output drivers to turn the LEDs on/off. The two signal inputs were chosen since they are capable of interrupt-on-edge capability (only used on INIT at this point), so moving the INIT input is a bit more problematic.

And now for something completely different. What if I wanted to communicate with the RX emulator with another serial port on my PDP-8/e instead of a PC running USB. Lets say for the sake of argument I have a spare serial port board in my 8e. Can I connect it to one of the serial ports on the arduino. Then write a simple assembly program on the 8/e to route the console serial IO port to the other serial board connected to the RXE serial port? Like a little terminal program. Then if/when I need to mount/dismount disk images, etc. I just run this little terminal program using the other serial board and voila. no more PC/usb needed?

The question is what do you think would need to be done on the arduino code. Maybe just change the serial port from the one that runs the usb converter to one of the other ones?
thanks!
Eugene

Yes, pretty simple. Only two lines of code really need to be updated:

Line 59 in rx02_emulator.ino: #define SERIAL_BAUD_RATE 250000
to change the debug port baud rate to a compatible value (like 9600, etc).

Line 77 in rx02_emulator.ino: HardwareSerial *tty = &Serial;
Change Serial to Serial1 or Serial2 to switch from the USB port to the UART1/2 sip connector footprints. Note you will have to add an external RS232 transceiver device (ie, a MAX232 equiv) as the pins are TTL levels, not RS232. Or you will need to get access to the +5V TTL RX and TX signals on your PDP-8e and bring them out to a connector. For the standard serial board (KL8-compatible) TTL serial data input exists on the 40p connector, but TTL serial data out does not (could be added to an unused pin with a single wire add).

Note you will probably have to run in debug level 0 (ie, debug off) otherwise the debug output will seriously affect performance when run at such a low baud rate (ie, 9600 vs 250000).

Don
 
Last edited:
Hi Don,

Well... I do really think I'm dead in the water until I find another RXV21. I've messed around with this for hours and get really random results. Once in a while I can get a partial boot with an I/O error. Two examples below of failed and partial boots.

Code:
@1000g
000600
@RS/000004 
@777772/?
@777766/?
@R0/000000 
@R1/177170 
@R2/001000 
@R3/177172 
@R4/000405 
@R5/000200 
@R6/007752 
@R7/000600 
@0g
061362
@?

@1000g
000600
@0g
?BOOT-U-I/O error




000720

I modified my boot loader to match the reset of yours upfront. I also tried yours without luck. If you can see anything wrong in mine let me know.

Code:
001000: reset                           [000005]
001002: mov     #177170,r1              [012701 177170]
                                        001004: ldcld   @012700(r0),f1          [177170 012700]
001006: mov     #100240,r0              [012700 100240]
                                        001010: bpl     000512                  [100240]
001012: clr     r2                      [005002]
001014: mov     #000200,r5              [012705 000200]
                                        001016: rts     r0                      [000200]
001020: mov     #000401,r4              [012704 000401]
                                        001022: br      001026                  [000401]
001024: mov     #177172,r3              [012703 177172]
                                        001026: ldcld   @030011(r2),f1          [177172 030011]
001030: bit     r0,(r1)                 [030011]
001032: beq     001030                  [001776]
001034: bmi     001136                  [100440]
001036: mov     #000407,(r1)            [012711 000407]
                                        001040: br      001060                  [000407]
001042: bit     r0,(r1)                 [030011]
001044: beq     001042                  [001776]
001046: bmi     001136                  [100433]
001050: movb    r4,(r3)                 [110413]
001052: swab    r4                      [000304]
001054: bit     r0,(r1)                 [030011]
001056: beq     001054                  [001776]
001060: movb    r4,(r3)                 [110413]
001062: swab    r4                      [000304]
001064: bit     r0,(r1)                 [030011]
001066: beq     001064                  [001776]
001070: bmi     001136                  [100422]
001072: mov     #000403,(r1)            [012711 000403]
                                        001074: br      001104                  [000403]
001076: bit     r0,(r1)                 [030011]
001100: beq     001076                  [001776]
001102: bmi     001136                  [100415]
001104: mov     r5,(r3)                 [010513]
001106: bit     r0,(r1)                 [030011]
001110: beq     001106                  [001776]
001112: bmi     001136                  [100411]
001114: mov     r2,(r3)                 [010213]
001116: add     r5,r2                   [060502]
001120: add     r5,r2                   [060502]
001122: cmpb    (r4)+,(r4)+             [122424]
001124: cmpb    r4,#000003              [120427 000003]
                                        001126: bpt                             [000003]
001130: ble     001030                  [003737]
001132: clr     r0                      [005000]
001134: clr     pc                      [005007]
001136: halt                            [000000]
001140: br      001000                  [000717]

Last here is the emulator serial monitor session

Code:
RX02 Emulator v1.6 (IDE 1.6.13/gcc 4.9.2) - Mar 11 2017 - 10:40:25
SD: cardType=SD3
SD: cardSize=3781MB
SD: volType=FAT32
SD: volBytesPerCluster=32768
SD: volClusterCount=120752
SD: volSizeBytes=3744MB
2000-01-01 01:00:00     512512 RX0.DSK
2017-03-15 19:53:00     512512 RT11_a.DSK
2000-01-01 01:00:00     512512 RX1.DSK
2017-03-15 19:53:00     512512 RT11_b.DSK
2000-01-01 01:00:00         47 SETUP.INI
2017-03-15 19:53:00     512512 RT11_c.DSK
2000-01-01 01:00:00     512512 t
2017-03-10 21:39:10     512512 1123_1.RX2
2017-03-10 21:39:32     512512 1123_2.RX2
2017-03-16 13:24:46     512512 RT11_4.DSK
Valid MicroSD card detected.
RX: waiting for INIT to clear ... t=1137ms
RX: INIT has cleared t=1138ms
RX: INIT rx_xmit_es(0244)

Processing setup file 'SETUP.INI' ...
0 RT11_a.DSK
Setting file[0]: 'RT11_a.DSK'
Y 0
Setting file[0] mode: R/W
1 t
Setting file[1]: 't'
Y 1
Setting file[1] mode: R/W
D 1
Setting debug mode: 1 (Low)
M 2
Setting emulation mode: 2 (RX02)
T 0
Setting timing mode: 0 (Fastest)
S
Current file[0]: 'RT11_a.DSK' (R/W)
Current file[1]: 't' (R/W)
... setup file processing complete!

Initialization complete.
RX: cmd=5112
RX: RDSTAT unit=0 den=S
RX: RDSTAT rx_xmit_es(0240)

RX: waiting for INIT to clear ... t=71374ms
RX: INIT has cleared t=71374ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT pos=6656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=001
RX: RDSECT pos=7168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: waiting for INIT to clear ... t=90457ms
RX: INIT has cleared t=90457ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=001
RX: RDSECT pos=8704. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=001
RX: RDSECT pos=9216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=001
RX: RDSECT pos=9728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=001
RX: RDSECT pos=10240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=001
RX: RDSECT pos=10752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=001
RX: RDSECT pos=11264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=001
RX: RDSECT pos=11776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=001
RX: RDSECT pos=12288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=001
RX: RDSECT pos=12800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=001
RX: RDSECT pos=6912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=001
RX: RDSECT pos=7424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=001
RX: RDSECT pos=7936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=004
RX: RDSECT pos=27392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=004
RX: RDSECT pos=27904. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=011
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=004
RX: RDSECT pos=30464. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=004
RX: RDSECT pos=30976. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=047
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=007
RX: RDSECT pos=51200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=007
RX: RDSECT pos=51712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=043
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=025
RX: RDSECT pos=140288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=025
RX: RDSECT pos=140800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=025
RX: RDSECT pos=140288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=025
RX: RDSECT pos=140800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=025
RX: RDSECT pos=141312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=025
RX: RDSECT pos=141824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=025
RX: RDSECT pos=142336. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=117
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=004
RX: RDSECT pos=33024. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=004
RX: RDSECT pos=26880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=135
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=005
RX: RDSECT pos=35840. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=005
RX: RDSECT pos=36352. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=005
RX: RDSECT pos=36864. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=005
RX: RDSECT pos=37376. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=005
RX: RDSECT pos=37888. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=005
RX: RDSECT pos=38400. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=005
RX: RDSECT pos=38912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=005
RX: RDSECT pos=39680. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=005
RX: RDSECT pos=33536. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=005
RX: RDSECT pos=34048. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=005
RX: RDSECT pos=34560. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=005
RX: RDSECT pos=35072. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=005
RX: RDSECT pos=35584. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=005
RX: RDSECT pos=36096. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=005
RX: RDSECT pos=36608. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=005
RX: RDSECT pos=37120. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=005
RX: RDSECT pos=37632. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=005
RX: RDSECT pos=38144. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=005
RX: RDSECT pos=38656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=005
RX: RDSECT pos=39168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=006
RX: RDSECT pos=40960. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=006
RX: RDSECT pos=41472. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=006
RX: RDSECT pos=41984. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=006
RX: RDSECT pos=42496. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=006
RX: RDSECT pos=43008. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=006
RX: RDSECT pos=43520. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=006
RX: RDSECT pos=44032. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=006
RX: RDSECT pos=44544. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=006
RX: RDSECT pos=45056. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=006
RX: RDSECT pos=45568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=006
RX: RDSECT pos=46080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=006
RX: RDSECT pos=39936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=006
RX: RDSECT pos=40448. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=006
RX: RDSECT pos=41216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=006
RX: RDSECT pos=41728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=006
RX: RDSECT pos=42240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=006
RX: RDSECT pos=42752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=006
RX: RDSECT pos=43264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=006
RX: RDSECT pos=43776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=006
RX: RDSECT pos=44288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=006
RX: RDSECT pos=44800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=006
RX: RDSECT pos=45312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=006
RX: RDSECT pos=45824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=006
RX: RDSECT pos=46336. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=006
RX: RDSECT pos=40192. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=006
RX: RDSECT pos=40704. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=007
RX: RDSECT pos=49152. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=007
RX: RDSECT pos=49664. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=007
RX: RDSECT pos=50176. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=007
RX: RDSECT pos=50688. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=007
RX: RDSECT pos=51200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=007
RX: RDSECT pos=51712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=007
RX: RDSECT pos=52224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=007
RX: RDSECT pos=52736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=007
RX: RDSECT pos=46592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=007
RX: RDSECT pos=47104. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=007
RX: RDSECT pos=47616. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=007
RX: RDSECT pos=48128. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=007
RX: RDSECT pos=48640. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=007
RX: RDSECT pos=49408. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=007
RX: RDSECT pos=49920. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=007
RX: RDSECT pos=50432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=007
RX: RDSECT pos=50944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=007
RX: RDSECT pos=51456. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=007
RX: RDSECT pos=51968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=007
RX: RDSECT pos=52480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=007
RX: RDSECT pos=52992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=007
RX: RDSECT pos=46848. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=007
RX: RDSECT pos=47360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=007
RX: RDSECT pos=47872. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=007
RX: RDSECT pos=48384. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=007
RX: RDSECT pos=48896. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=010
RX: RDSECT pos=57344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=010
RX: RDSECT pos=57856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=010
RX: RDSECT pos=58368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=010
RX: RDSECT pos=58880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=010
RX: RDSECT pos=59392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=010
RX: RDSECT pos=53248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=010
RX: RDSECT pos=53760. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=010
RX: RDSECT pos=54272. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=010
RX: RDSECT pos=54784. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=010
RX: RDSECT pos=55296. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=033
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=004
RX: RDSECT pos=29440. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=004
RX: RDSECT pos=29952. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=005
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=005
RX: RDSECT pos=33792. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=140
RX: EMPBUF rx_xmit_es(0000)
 
Well, as far as it goes that RX02 emulator console log looks ok.

However, if RT11 is still not fully booting up, you might also try the XXDP.DSK image. It is a bootable diagnostic image and it a much simpler boot than RT11 is. It also has some of the RX controller diagnostics / performance test on it. It would be interesting to see if this image can be booted successfully.

Here is the log from the functional diagnostic test (following). You could run this one just UNIT #1. Boot XXDP.DSK on UNIT #0, and mount a scratch file (RX1.DSK) on UNIT #1. Then run the test and follow the prompts (stuff I type I highlighted in RED):

Code:
>>>[COLOR="#FF0000"]b dy0[/COLOR]

(Program)

BOOTING UP XXDP-XM EXTENDED MONITOR

XXDP-XM EXTENDED MONITOR - XXDP V2.5
REVISION: F0
BOOTED FROM DD3
124KW OF MEMORY
UNIBUS SYSTEM

RESTART ADDRESS: 152000
TYPE "H" FOR HELP !

.[COLOR="#FF0000"]R ZRXF??[/COLOR]
ZRXFB0.BIC

DRSSM-G2
CZRXFB0-0-0
RX02 FUNCTION-LOGIC TEST
UNIT IS RX02
RSTRT ADR 145702
DR>STA

CHANGE HW (L)  ? [COLOR="#FF0000"]Y[/COLOR]

# UNITS (D)  ? [COLOR="#FF0000"]1[/COLOR]

UNIT 0
RX BUS ADR (O)  177170 ?
VECTOR ADR (O)  264 ?
DRIVE #    (O)  0 ?[COLOR="#FF0000"] 1[/COLOR]
EXP WRD-CR (O)  0 ?
BR-LEVEL   (O)  5 ?

CHANGE SW (L)  ? [COLOR="#FF0000"]Y[/COLOR]

TEST HELP  (L) N ? [COLOR="#FF0000"]Y[/COLOR]
DIAGNOSTIC MODES ARE:
      LOGIC TEST, FUNCTION TEST, OR BOTH
   -FUNCTION TESTS (1-10)
      ACT AS QUICK VERIFY & REPORT FAILING FUNCTIONS
   -LOGIC TESTS (11-36)
      ANALYZE FAILURE & GIVE ERROR INFO
      REPORT FIELD REPLACEABLE UNITS "FRU'S"
       ->DEVICE FATAL THRESHOLD LEVEL (DVTL) IS SET = 1
        "DVTL" = NO. OF HARD ERRS THAT CAUSE DEVICE FATAL ERR
TYPE "CR" TO CONTINUE (L) N ?
LOGIC TEST MODE    (L) Y ? [COLOR="#FF0000"]Y[/COLOR]
FUNCTION TEST MODE (L) N ?[COLOR="#FF0000"] Y[/COLOR]
HARD ERR -> DEVICE FATAL THRESHOLD LVL (O)  1 ?
NON-EXISTANT MEM ADR (NXM TST) (O)  160000 ?
EXTENDED ADR BITS: 13 & 12 (NPR-NXM TST) (O)  0 ?
TEST CONTROL FLAGS  (L) N ?
EXPANSION WORD TYPE <CR>  (L) N ?

 IS FLOPPY SYSTEM CONTAINING UNIT #00
  POWERED DOWN (L) N ? [COLOR="#FF0000"]N[/COLOR]

CZRXFB0 EOP    1
    0 TOTAL ERRS

 IS FLOPPY SYSTEM CONTAINING UNIT #00
  POWERED DOWN (L) N ? [COLOR="#FF0000"]N[/COLOR]

CZRXFB0 EOP    2
    0 TOTAL ERRS

(Console)
[COLOR="#FF0000"]^P[/COLOR]

>>>h
  Halted at 135642
 
Last edited:
Hi Don,

No go, it loads a lot, but then just hangs on the console after I enter 1000G

Code:
RX02 Emulator v1.6 (IDE 1.6.13/gcc 4.9.2) - Mar 11 2017 - 10:41:04
SD: cardType=SD3
SD: cardSize=3781MB
SD: volType=FAT32
SD: volBytesPerCluster=32768
SD: volClusterCount=120752
SD: volSizeBytes=3744MB
2017-03-10 17:04:56     512512 XXDP.DSK
2017-03-10 17:04:56     512512 RT11.DSK
2017-03-10 17:04:56     512512 OS8V3D.RX2
2017-03-10 20:40:50     512512 11XX_1.RX2
2017-03-10 20:40:38     512512 11XX_2.RX2
2017-03-10 20:41:28     512512 11XX_3.RX2
2017-03-10 20:41:10     512512 11XX_4.RX2
2017-03-10 20:41:00     512512 11XX_5.RX2
2017-03-10 20:40:26     512512 11XX_9.RX2
2017-03-10 20:41:36     512512 11XXDP.RX2
2017-03-10 20:39:10     512512 1123_1.RX2
2017-03-10 20:39:32     512512 1123_2.RX2
2000-01-01 01:00:00     512512 RX0.DSK
2000-01-01 01:00:00     512512 RX1.DSK
2000-01-01 01:00:00         51 SETUP.INI
Valid MicroSD card detected.
RX: waiting for INIT to clear ... t=1147ms
RX: INIT has cleared t=1148ms
RX: INIT rx_xmit_es(0244)

Processing setup file 'SETUP.INI' ...
0 XXDP.DSK
Setting file[0]: 'XXDP.DSK'
Y 0
Setting file[0] mode: R/W
1 RX1.DSK
Setting file[1]: 'RX1.DSK'
Y 1
Setting file[1] mode: R/W
D 1
Setting debug mode: 1 (Low)
M 2
Setting emulation mode: 2 (RX02)
T 0
Setting timing mode: 0 (Fastest)
S
Current file[0]: 'XXDP.DSK' (R/W)
Current file[1]: 'RX1.DSK' (R/W)
... setup file processing complete!

Initialization complete.
RX: cmd=5112
RX: RDSTAT unit=0 den=S
RX: RDSTAT rx_xmit_es(0240)

RX: waiting for INIT to clear ... t=35560ms
RX: INIT has cleared t=40769ms
RX: waiting for INIT to clear ... t=40779ms
RX: INIT has cleared t=40780ms
RX: INIT rx_xmit_es(0244)

RX: waiting for INIT to clear ... t=74373ms
RX: INIT has cleared t=74374ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT pos=6656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=001
RX: RDSECT pos=7168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=002
RX: RDSECT pos=19712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=002
RX: RDSECT pos=13568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=002
RX: RDSECT pos=14080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=002
RX: RDSECT pos=14592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=003
RX: RDSECT pos=23040. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=003
RX: RDSECT pos=23552. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=003
RX: RDSECT pos=24064. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=003
RX: RDSECT pos=24576. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=003
RX: RDSECT pos=25088. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=003
RX: RDSECT pos=25600. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=003
RX: RDSECT pos=26112. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=003
RX: RDSECT pos=19968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=003
RX: RDSECT pos=20480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=003
RX: RDSECT pos=20992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=003
RX: RDSECT pos=21504. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=003
RX: RDSECT pos=22016. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=003
RX: RDSECT pos=22528. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=003
RX: RDSECT pos=23296. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=003
RX: RDSECT pos=23808. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=003
RX: RDSECT pos=24320. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=003
RX: RDSECT pos=24832. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=003
RX: RDSECT pos=25344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=003
RX: RDSECT pos=25856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=003
RX: RDSECT pos=26368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=003
RX: RDSECT pos=20224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=003
RX: RDSECT pos=20736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=003
RX: RDSECT pos=21248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=003
RX: RDSECT pos=21760. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=003
RX: RDSECT pos=22272. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=003
RX: RDSECT pos=22784. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=004
RX: RDSECT pos=31232. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=004
RX: RDSECT pos=31744. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=004
RX: RDSECT pos=32256. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=004
RX: RDSECT pos=32768. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=004
RX: RDSECT pos=26624. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=004
RX: RDSECT pos=27136. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=004
RX: RDSECT pos=27648. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=004
RX: RDSECT pos=28160. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=004
RX: RDSECT pos=28672. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=004
RX: RDSECT pos=29184. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=004
RX: RDSECT pos=29696. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=004
RX: RDSECT pos=30208. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=004
RX: RDSECT pos=30720. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=004
RX: RDSECT pos=31488. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=004
RX: RDSECT pos=32000. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=004
RX: RDSECT pos=32512. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=004
RX: RDSECT pos=33024. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=004
RX: RDSECT pos=26880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=004
RX: RDSECT pos=27392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=004
RX: RDSECT pos=27904. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=004
RX: RDSECT pos=28416. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=004
RX: RDSECT pos=28928. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=004
RX: RDSECT pos=29440. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=004
RX: RDSECT pos=29952. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=004
RX: RDSECT pos=30464. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=004
RX: RDSECT pos=30976. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=005
RX: RDSECT pos=39424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=005
RX: RDSECT pos=33280. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=005
RX: RDSECT pos=33792. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=005
RX: RDSECT pos=34304. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=005
RX: RDSECT pos=34816. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=005
RX: RDSECT pos=35328. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)
 
Here is a full boot log from booting the XXDP.DSK file on my 11/44, from boot prompt 'b dy0' until XXDP prints a dot.

By my count a total of 195. sector reads were performed.

Don

Code:
RX02 Emulator v1.6 (IDE 1.8.1/gcc 4.9.2) - Mar  7 2017 - 09:27:55

Current file[0]: 'XXDP.DSK' (R/W)
Current file[1]: 'RX1.DSK' (R/W)

RX: waiting for INIT to clear ... t=71587ms
RX: INIT has cleared t=71683ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0007
RX: RDSECT unit=0 den=S
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT rx_xmit_es(0060)

RX: waiting for INIT to clear ... t=71706ms
RX: INIT has cleared t=71801ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT pos=6656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=001
RX: RDSECT pos=7168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=001
RX: RDSECT pos=7680. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=001
RX: RDSECT pos=8192. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=002
RX: RDSECT pos=19712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=002
RX: RDSECT pos=13568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=002
RX: RDSECT pos=14080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=002
RX: RDSECT pos=14592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=003
RX: RDSECT pos=23040. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=003
RX: RDSECT pos=23552. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=003
RX: RDSECT pos=24064. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=003
RX: RDSECT pos=24576. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=003
RX: RDSECT pos=25088. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=003
RX: RDSECT pos=25600. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=003
RX: RDSECT pos=26112. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=003
RX: RDSECT pos=19968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=003
RX: RDSECT pos=20480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=003
RX: RDSECT pos=20992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=003
RX: RDSECT pos=21504. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=003
RX: RDSECT pos=22016. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=003
RX: RDSECT pos=22528. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=003
RX: RDSECT pos=23296. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=003
RX: RDSECT pos=23808. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=003
RX: RDSECT pos=24320. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=003
RX: RDSECT pos=24832. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=003
RX: RDSECT pos=25344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=003
RX: RDSECT pos=25856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=003
RX: RDSECT pos=26368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=003
RX: RDSECT pos=20224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=003
RX: RDSECT pos=20736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=003
RX: RDSECT pos=21248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=003
RX: RDSECT pos=21760. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=003
RX: RDSECT pos=22272. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=003
RX: RDSECT pos=22784. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=004
RX: RDSECT pos=31232. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=004
RX: RDSECT pos=31744. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=004
RX: RDSECT pos=32256. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=004
RX: RDSECT pos=32768. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=004
RX: RDSECT pos=26624. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=004
RX: RDSECT pos=27136. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=004
RX: RDSECT pos=27648. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=004
RX: RDSECT pos=28160. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=004
RX: RDSECT pos=28672. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=004
RX: RDSECT pos=29184. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=004
RX: RDSECT pos=29696. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=004
RX: RDSECT pos=30208. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=004
RX: RDSECT pos=30720. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=004
RX: RDSECT pos=31488. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=004
RX: RDSECT pos=32000. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=004
RX: RDSECT pos=32512. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=004
RX: RDSECT pos=33024. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=004
RX: RDSECT pos=26880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=004
RX: RDSECT pos=27392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=004
RX: RDSECT pos=27904. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=004
RX: RDSECT pos=28416. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=004
RX: RDSECT pos=28928. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=004
RX: RDSECT pos=29440. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=004
RX: RDSECT pos=29952. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=004
RX: RDSECT pos=30464. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=004
RX: RDSECT pos=30976. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=005
RX: RDSECT pos=39424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=005
RX: RDSECT pos=33280. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=005
RX: RDSECT pos=33792. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=005
RX: RDSECT pos=34304. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=005
RX: RDSECT pos=34816. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=005
RX: RDSECT pos=35328. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0413
RX: RDSTAT unit=0 den=D
RX: RDSTAT rx_xmit_es(0240)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=003
RX: RDSECT pos=26112. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=003
RX: RDSECT pos=19968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=003
RX: RDSECT pos=20480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=003
RX: RDSECT pos=20992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=004
RX: RDSECT pos=31232. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=004
RX: RDSECT pos=31744. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=001
RX: RDSECT pos=9728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=001
RX: RDSECT pos=10240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=001
RX: RDSECT pos=10752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=001
RX: RDSECT pos=11264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=001
RX: RDSECT pos=11776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=001
RX: RDSECT pos=12288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=001
RX: RDSECT pos=12800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=001
RX: RDSECT pos=6912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=001
RX: RDSECT pos=7424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=001
RX: RDSECT pos=7936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=001
RX: RDSECT pos=8448. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=001
RX: RDSECT pos=8960. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=001
RX: RDSECT pos=9472. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=001
RX: RDSECT pos=9984. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=001
RX: RDSECT pos=10496. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=001
RX: RDSECT pos=11008. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=001
RX: RDSECT pos=11520. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=001
RX: RDSECT pos=12032. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=001
RX: RDSECT pos=12544. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=001
RX: RDSECT pos=13056. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=002
RX: RDSECT pos=14848. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=002
RX: RDSECT pos=15360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=002
RX: RDSECT pos=15872. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=002
RX: RDSECT pos=16384. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=002
RX: RDSECT pos=16896. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=002
RX: RDSECT pos=17408. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=002
RX: RDSECT pos=17920. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=002
RX: RDSECT pos=18432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=002
RX: RDSECT pos=18944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=002
RX: RDSECT pos=19456. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=002
RX: RDSECT pos=13312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=002
RX: RDSECT pos=13824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=003
RX: RDSECT pos=26112. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=003
RX: RDSECT pos=19968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=003
RX: RDSECT pos=25856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=003
RX: RDSECT pos=26368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=003
RX: RDSECT pos=20224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=003
RX: RDSECT pos=20736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=004
RX: RDSECT pos=32256. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=004
RX: RDSECT pos=32768. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=001
RX: RDSECT pos=9728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=001
RX: RDSECT pos=10240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=004
RX: RDSECT pos=26624. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=004
RX: RDSECT pos=27136. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=005
RX: RDSECT pos=35840. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=005
RX: RDSECT pos=36352. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=005
RX: RDSECT pos=36864. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=005
RX: RDSECT pos=37376. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=005
RX: RDSECT pos=37888. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=005
RX: RDSECT pos=38400. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=005
RX: RDSECT pos=38912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=005
RX: RDSECT pos=39680. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=005
RX: RDSECT pos=33536. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=005
RX: RDSECT pos=34048. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=005
RX: RDSECT pos=34560. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=005
RX: RDSECT pos=35072. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=005
RX: RDSECT pos=35584. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=005
RX: RDSECT pos=36096. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=005
RX: RDSECT pos=36608. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=005
RX: RDSECT pos=37120. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=005
RX: RDSECT pos=37632. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=005
RX: RDSECT pos=38144. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=005
RX: RDSECT pos=38656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=005
RX: RDSECT pos=39168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=006
RX: RDSECT pos=40960. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=006
RX: RDSECT pos=41472. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=006
RX: RDSECT pos=41984. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=006
RX: RDSECT pos=42496. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=006
RX: RDSECT pos=43008. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=006
RX: RDSECT pos=43520. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=006
RX: RDSECT pos=44032. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=006
RX: RDSECT pos=44544. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=006
RX: RDSECT pos=45056. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=006
RX: RDSECT pos=45568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=006
RX: RDSECT pos=46080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=006
RX: RDSECT pos=39936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=006
RX: RDSECT pos=40448. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=006
RX: RDSECT pos=41216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=006
RX: RDSECT pos=41728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=006
RX: RDSECT pos=42240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=006
RX: RDSECT pos=42752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=006
RX: RDSECT pos=43264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=006
RX: RDSECT pos=43776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=006
RX: RDSECT pos=44288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=006
RX: RDSECT pos=44800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=006
RX: RDSECT pos=45312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=006
RX: RDSECT pos=45824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=006
RX: RDSECT pos=46336. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=006
RX: RDSECT pos=40192. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=006
RX: RDSECT pos=40704. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=007
RX: RDSECT pos=49152. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=007
RX: RDSECT pos=49664. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=007
RX: RDSECT pos=50176. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=007
RX: RDSECT pos=50688. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=007
RX: RDSECT pos=51200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=007
RX: RDSECT pos=51712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=007
RX: RDSECT pos=52224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=007
RX: RDSECT pos=52736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=007
RX: RDSECT pos=46592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=007
RX: RDSECT pos=47104. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=007
RX: RDSECT pos=47616. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=007
RX: RDSECT pos=48128. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=007
RX: RDSECT pos=48640. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=007
RX: RDSECT pos=49408. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=007
RX: RDSECT pos=49920. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=007
RX: RDSECT pos=50432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=007
RX: RDSECT pos=50944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=007
RX: RDSECT pos=51456. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=007
RX: RDSECT pos=51968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=007
RX: RDSECT pos=52480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=007
RX: RDSECT pos=52992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=007
RX: RDSECT pos=46848. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=007
RX: RDSECT pos=47360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=007
RX: RDSECT pos=47872. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=007
RX: RDSECT pos=48384. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=007
RX: RDSECT pos=48896. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=010
RX: RDSECT pos=57344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=010
RX: RDSECT pos=57856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=010
RX: RDSECT pos=58368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=010
RX: RDSECT pos=58880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=010
RX: RDSECT pos=59392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=010
RX: RDSECT pos=53248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)
 
And here is a full boot log from booting the RT11.DSK file on my 11/44, from boot prompt 'b dy0' until RT11 prints a dot.

By my count a total of 202. sector reads were performed.

Don

Code:
RX02 Emulator v1.6 (IDE 1.8.1/gcc 4.9.2) - Mar  7 2017 - 09:27:55

Current file[0]: 'RT11.DSK' (R/W)
Current file[1]: 'RX1.DSK' (R/W)

RX: waiting for INIT to clear ... t=23992ms
RX: INIT has cleared t=24087ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0007
RX: RDSECT unit=0 den=S
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT rx_xmit_es(0060)

RX: waiting for INIT to clear ... t=24111ms
RX: INIT has cleared t=24206ms
RX: INIT rx_xmit_es(0244)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=001
RX: RDSECT pos=6656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=001
RX: RDSECT pos=7168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=001
RX: RDSECT pos=7680. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=001
RX: RDSECT pos=8192. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=001
RX: RDSECT pos=8704. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=001
RX: RDSECT pos=9216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=001
RX: RDSECT pos=9728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=001
RX: RDSECT pos=10240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=001
RX: RDSECT pos=10752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=001
RX: RDSECT pos=11264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=001
RX: RDSECT pos=11776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=001
RX: RDSECT pos=12288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=001
RX: RDSECT pos=12800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=001
RX: RDSECT pos=6912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=001
RX: RDSECT pos=7424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=001
RX: RDSECT pos=7936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=004
RX: RDSECT pos=27392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=004
RX: RDSECT pos=27904. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=011
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=004
RX: RDSECT pos=30464. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=004
RX: RDSECT pos=30976. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=047
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=007
RX: RDSECT pos=51200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=007
RX: RDSECT pos=51712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=043
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=025
RX: RDSECT pos=140288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=025
RX: RDSECT pos=140800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=025
RX: RDSECT pos=140288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=025
RX: RDSECT pos=140800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=025
RX: RDSECT pos=141312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=025
RX: RDSECT pos=141824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=025
RX: RDSECT pos=142336. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=117
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=004
RX: RDSECT pos=33024. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=004
RX: RDSECT pos=26880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=135
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=005
RX: RDSECT pos=35840. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=005
RX: RDSECT pos=36352. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=005
RX: RDSECT pos=36864. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=005
RX: RDSECT pos=37376. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=005
RX: RDSECT pos=37888. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=005
RX: RDSECT pos=38400. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=005
RX: RDSECT pos=38912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=005
RX: RDSECT pos=39680. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=005
RX: RDSECT pos=33536. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=005
RX: RDSECT pos=34048. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=005
RX: RDSECT pos=34560. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=005
RX: RDSECT pos=35072. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=005
RX: RDSECT pos=35584. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=005
RX: RDSECT pos=36096. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=005
RX: RDSECT pos=36608. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=005
RX: RDSECT pos=37120. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=005
RX: RDSECT pos=37632. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=005
RX: RDSECT pos=38144. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=005
RX: RDSECT pos=38656. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=005
RX: RDSECT pos=39168. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=006
RX: RDSECT pos=40960. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=006
RX: RDSECT pos=41472. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=006
RX: RDSECT pos=41984. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=006
RX: RDSECT pos=42496. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=006
RX: RDSECT pos=43008. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=006
RX: RDSECT pos=43520. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=006
RX: RDSECT pos=44032. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=006
RX: RDSECT pos=44544. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=006
RX: RDSECT pos=45056. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=006
RX: RDSECT pos=45568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=006
RX: RDSECT pos=46080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=006
RX: RDSECT pos=39936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=006
RX: RDSECT pos=40448. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=006
RX: RDSECT pos=41216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=006
RX: RDSECT pos=41728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=006
RX: RDSECT pos=42240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=006
RX: RDSECT pos=42752. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=006
RX: RDSECT pos=43264. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=006
RX: RDSECT pos=43776. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=006
RX: RDSECT pos=44288. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=006
RX: RDSECT pos=44800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=006
RX: RDSECT pos=45312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=006
RX: RDSECT pos=45824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=006
RX: RDSECT pos=46336. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=006
RX: RDSECT pos=40192. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=006
RX: RDSECT pos=40704. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=007
RX: RDSECT pos=49152. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=007
RX: RDSECT pos=49664. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=007
RX: RDSECT pos=50176. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=007
RX: RDSECT pos=50688. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=007
RX: RDSECT pos=51200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=007
RX: RDSECT pos=51712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=007
RX: RDSECT pos=52224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=007
RX: RDSECT pos=52736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=007
RX: RDSECT pos=46592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=007
RX: RDSECT pos=47104. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=007
RX: RDSECT pos=47616. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=007
RX: RDSECT pos=48128. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=007
RX: RDSECT pos=48640. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=007
RX: RDSECT pos=49408. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=007
RX: RDSECT pos=49920. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=007
RX: RDSECT pos=50432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=007
RX: RDSECT pos=50944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=007
RX: RDSECT pos=51456. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=007
RX: RDSECT pos=51968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=007
RX: RDSECT pos=52480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=007
RX: RDSECT pos=52992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=007
RX: RDSECT pos=46848. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=007
RX: RDSECT pos=47360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=007
RX: RDSECT pos=47872. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=007
RX: RDSECT pos=48384. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=007
RX: RDSECT pos=48896. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=010
RX: RDSECT pos=57344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=010
RX: RDSECT pos=57856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=010
RX: RDSECT pos=58368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=010
RX: RDSECT pos=58880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=010
RX: RDSECT pos=59392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=010
RX: RDSECT pos=53248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=010
RX: RDSECT pos=53760. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=010
RX: RDSECT pos=54272. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=010
RX: RDSECT pos=54784. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=010
RX: RDSECT pos=55296. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=033
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=004
RX: RDSECT pos=29440. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=004
RX: RDSECT pos=29952. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=005
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0407
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=005
RX: RDSECT pos=33792. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0403
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=140
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=004
RX: RDSECT pos=28416. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=112
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=005
RX: RDSECT pos=39424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=005
RX: RDSECT pos=33280. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=036
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=025
RX: RDSECT pos=142080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=025
RX: RDSECT pos=142592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=023
RX: RDSECT pos=132352. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=023
RX: RDSECT pos=132864. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=024
RX: RDSECT pos=137728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=024
RX: RDSECT pos=138240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=024
RX: RDSECT pos=134912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=024
RX: RDSECT pos=135424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=027
RX: RDSECT ta=036
RX: RDSECT pos=205312. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=036
RX: RDSECT pos=205824. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=025
RX: RDSECT pos=144640. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=025
RX: RDSECT pos=145152. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=035
RX: RDSECT pos=196864. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=035
RX: RDSECT pos=197376. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=026
RX: RDSECT pos=151296. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=026
RX: RDSECT pos=151808. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=027
RX: RDSECT pos=154624. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=027
RX: RDSECT pos=155136. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=027
RX: RDSECT pos=153088. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=027
RX: RDSECT pos=153856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=027
RX: RDSECT pos=154368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=027
RX: RDSECT pos=154880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=026
RX: RDSECT pos=146432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=026
RX: RDSECT pos=146944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=034
RX: RDSECT pos=190976. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=034
RX: RDSECT pos=191488. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=013
RX: RDSECT pos=79360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=013
RX: RDSECT pos=73216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=013
RX: RDSECT pos=73728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=013
RX: RDSECT pos=74240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=001
RX: RDSECT pos=12800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=001
RX: RDSECT pos=6912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=001
RX: RDSECT pos=7424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=001
RX: RDSECT pos=7936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=026
RX: RDSECT pos=146432. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=026
RX: RDSECT pos=146944. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=026
RX: RDSECT pos=147456. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=026
RX: RDSECT pos=147968. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=026
RX: RDSECT pos=148480. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=013
RX: RDSECT ta=026
RX: RDSECT pos=148992. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=015
RX: RDSECT ta=026
RX: RDSECT pos=149504. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=017
RX: RDSECT ta=026
RX: RDSECT pos=150016. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=021
RX: RDSECT ta=026
RX: RDSECT pos=150528. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=023
RX: RDSECT ta=026
RX: RDSECT pos=151040. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=025
RX: RDSECT ta=026
RX: RDSECT pos=151552. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=030
RX: RDSECT ta=026
RX: RDSECT pos=152320. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=032
RX: RDSECT ta=026
RX: RDSECT pos=152832. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=026
RX: RDSECT pos=146688. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=026
RX: RDSECT pos=147200. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=026
RX: RDSECT pos=147712. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=010
RX: RDSECT ta=026
RX: RDSECT pos=148224. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=012
RX: RDSECT ta=026
RX: RDSECT pos=148736. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=026
RX: RDSECT pos=149248. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=026
RX: RDSECT pos=149760. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=026
RX: RDSECT pos=150272. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=026
RX: RDSECT pos=150784. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0501
RX: FILBUF unit=0 den=D
RX: FILBUF wc=200
RX: FILBUF rx_xmit_es(0000)

RX: cmd=0505
RX: WRSECT unit=0 den=D
RX: WRSECT sa=005
RX: WRSECT ta=026
RX: WRSECT pos=147456. len=256.
RX: WRSECT rx_xmit_es(0040)

RX: cmd=0501
RX: FILBUF unit=0 den=D
RX: FILBUF wc=200
RX: FILBUF rx_xmit_es(0000)

RX: cmd=0505
RX: WRSECT unit=0 den=D
RX: WRSECT sa=007
RX: WRSECT ta=026
RX: WRSECT pos=147968. len=256.
RX: WRSECT rx_xmit_es(0040)

RX: cmd=0501
RX: FILBUF unit=0 den=D
RX: FILBUF wc=200
RX: FILBUF rx_xmit_es(0000)

RX: cmd=0505
RX: WRSECT unit=0 den=D
RX: WRSECT sa=011
RX: WRSECT ta=026
RX: WRSECT pos=148480. len=256.
RX: WRSECT rx_xmit_es(0040)

RX: cmd=0501
RX: FILBUF unit=0 den=D
RX: FILBUF wc=200
RX: FILBUF rx_xmit_es(0000)

RX: cmd=0505
RX: WRSECT unit=0 den=D
RX: WRSECT sa=013
RX: WRSECT ta=026
RX: WRSECT pos=148992. len=256.
RX: WRSECT rx_xmit_es(0040)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=013
RX: RDSECT pos=77056. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=013
RX: RDSECT pos=77568. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=013
RX: RDSECT pos=78080. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=013
RX: RDSECT pos=78592. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=001
RX: RDSECT pos=12800. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=002
RX: RDSECT ta=001
RX: RDSECT pos=6912. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=004
RX: RDSECT ta=001
RX: RDSECT pos=7424. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=006
RX: RDSECT ta=001
RX: RDSECT pos=7936. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=014
RX: RDSECT ta=075
RX: RDSECT pos=408832. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=016
RX: RDSECT ta=075
RX: RDSECT pos=409344. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=031
RX: RDSECT ta=013
RX: RDSECT pos=79360. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=001
RX: RDSECT ta=013
RX: RDSECT pos=73216. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=013
RX: RDSECT pos=73728. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=013
RX: RDSECT pos=74240. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=020
RX: RDSECT ta=075
RX: RDSECT pos=409856. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=022
RX: RDSECT ta=075
RX: RDSECT pos=410368. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=024
RX: RDSECT ta=075
RX: RDSECT pos=410880. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=026
RX: RDSECT ta=075
RX: RDSECT pos=411392. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=003
RX: RDSECT ta=076
RX: RDSECT pos=413184. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=005
RX: RDSECT ta=076
RX: RDSECT pos=413696. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=007
RX: RDSECT ta=076
RX: RDSECT pos=414208. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)

RX: cmd=0507
RX: RDSECT unit=0 den=D
RX: RDSECT sa=011
RX: RDSECT ta=076
RX: RDSECT pos=414720. len=256.
RX: RDSECT rx_xmit_es(0040)

RX: cmd=0503
RX: EMPBUF unit=0 den=D
RX: EMPBUF wc=200
RX: EMPBUF rx_xmit_es(0000)
 
Hi Don,

Over the weekend I'm going to pull put my TU58 emulator and see if I can boot a tape to run the XXDP. I'll let you know what I find.

len
 
Hi Don,

Over the weekend I'm going to pull put my TU58 emulator and see if I can boot a tape to run the XXDP. I'll let you know what I find.

len

I did a file compare between your XXDP boot log, and mine, and they are essentially an exact match for as much as you listed. Mine goes on for another thousand or more lines after yours 'hangs', but for what you posted they match.

So it appears the boot is going as expected, but gets to a certain point in the process and then hangs for some unknown reason.

Don

Note: there is a difference right at beginning (during the primary boot) in that my boot code (M9312 DY ROM) reads sectors 1,3,5, and 7 of track 1 to allow for booting either an RX01 (at 128bytes/sector) or an RX02 (at 256bytes/sector). So either 512B (RX01) or 1024B (RX02) is read. In the case of the RX02 the second 512B is basically discarded and not used, so it really does not matter that it is read. Only the first 512B in locations 0-777(8) are used.
 
Back
Top