I have tried to study x86 MBR code as below:
0000:7C00 FA CLI
0000:7C01 33C0 XOR AX,AX
0000:7C03 8ED0 MOV SS,AX
0000:7C05 BC007C MOV SP,7C00
0000:7C08 8BF4 MOV SI,SP
0000:7C0A 50 PUSH AX
0000:7C0B 07 POP ES
0000:7C0C 50 PUSH AX
0000:7C0D 1F POP DS
0000:7C0E FB STI
0000:7C0F FC CLD
0000:7C10 BF0006 MOV DI,0600
I can not understand the reason for the last line of the code.