[FREELDR] Remove unneeded ASSUME line.
[reactos.git] / boot / freeldr / freeldr / arch / i386 / entry.S
index 7de40ca..5e8397e 100644 (file)
@@ -65,8 +65,6 @@ ContinueAddress:
 
 _FrldrStartup:
 
-ASSUME /*CS:_TEXT,*/ DS:_DATA, ES:_DATA, FS:_DATA, GS:_DATA, SS:_DATA
-
     /* Store BootDrive and BootPartition */
     mov byte ptr ds:[_FrldrBootDrive], dl
     xor eax, eax
@@ -153,7 +151,7 @@ _Reboot:
 PUBLIC _ChainLoadBiosBootSectorCode
 _ChainLoadBiosBootSectorCode:
     /* Set the boot drive */
-    mov dl, byte ptr [_FrldrBootDrive]
+    mov dl, byte ptr ds:[_FrldrBootDrive]
 
     /* Set the function ID */
     mov bx, FNID_ChainLoadBiosBootSectorCode
@@ -165,7 +163,7 @@ _ChainLoadBiosBootSectorCode:
 PUBLIC i386CallRealMode
 i386CallRealMode:
     /* Set continue address and switch to real mode */
-    mov dword ptr [ContinueAddress], offset i386CallRealMode_return
+    mov dword ptr ds:[ContinueAddress], offset i386CallRealMode_return
     jmp SwitchToReal
 i386CallRealMode_return:
     ret