Joe Shmoe 33 Light Poster

I figured it out!!!!!!! :)

I had the track set to one and the second sector is on track zero.
So I changed this

mov	ch, 01	;Track to read

to this

mov	ch, 00	;Track to read

And I added this before the jmp 0x1000:0x0000

mov ax, 0x1000
mov ds, ax
Salem commented: Congrats, and thanks for the feedback of your solution. +33