summaryrefslogtreecommitdiffstats
path: root/board/MAI/bios_emulator/scitech/src/x86emu/decode.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-27 21:31:46 +0000
committerwdenk <wdenk>2003-06-27 21:31:46 +0000
commit8bde7f776c77b343aca29b8c7b58464d915ac245 (patch)
tree20f1fd99975215e7c658454a15cdb4ed4694e2d4 /board/MAI/bios_emulator/scitech/src/x86emu/decode.c
parent993cad9364c6b87ae429d1ed1130d8153f6f027e (diff)
downloadtalos-obmc-uboot-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.gz
talos-obmc-uboot-8bde7f776c77b343aca29b8c7b58464d915ac245.zip
* Code cleanup:
- remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'board/MAI/bios_emulator/scitech/src/x86emu/decode.c')
-rw-r--r--board/MAI/bios_emulator/scitech/src/x86emu/decode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/MAI/bios_emulator/scitech/src/x86emu/decode.c b/board/MAI/bios_emulator/scitech/src/x86emu/decode.c
index bb204e6001..832b1f5f2e 100644
--- a/board/MAI/bios_emulator/scitech/src/x86emu/decode.c
+++ b/board/MAI/bios_emulator/scitech/src/x86emu/decode.c
@@ -93,7 +93,7 @@ void X86EMU_exec(void)
M.x86.intr = 0;
DB(x86emu_end_instr();)
-
+
for (;;) {
DB(if (CHECK_IP_FETCH()) x86emu_check_ip_access();)
/* If debugging, save the IP and CS values. */
@@ -745,11 +745,11 @@ unsigned decode_rm00_address(
return M.x86.R_ECX;
case 2:
DECODE_PRINTF("[EDX]");
-// M.x86.mode |= SYSMODE_SEG_DS_SS;
+/* M.x86.mode |= SYSMODE_SEG_DS_SS; */
return M.x86.R_EDX;
case 3:
DECODE_PRINTF("[EBX]");
-// M.x86.mode |= SYSMODE_SEG_DS_SS;
+/* M.x86.mode |= SYSMODE_SEG_DS_SS; */
return M.x86.R_EBX;
case 4:
printk("Unsupported SIB encoding\n");
@@ -933,7 +933,7 @@ unsigned decode_rm10_address(
}
else
{
- int displacement = (s16)fetch_word_imm();
+ int displacement = (s16)fetch_word_imm();
switch (rm) {
case 0:
DECODE_PRINTF2("%d[BX+SI]", displacement);
OpenPOWER on IntegriCloud