search for: reg_es

Displaying 7 results from an estimated 7 matches for "reg_es".

2013 Sep 09
1
tools::md5sum(directory) behavior different on Windows vs. Unix
tools::md5sum gives a warning if it receives a directory as an argument on Unix but not on Windows. >From what I understand, this happens because in Windows a directory is not treated as a file so fopen returns NULL. Then, NA is returned without a warning. On Unix, a directory is treated as a file so fopen does not return NULL so md5 is run and fails, leading to a warning. This is a good
2005 Apr 02
1
[PATCH] VMX support for MMIO/PIO in VM8086 mode
Memory mapped and port I/O is currently broken under VMX when the partition is running in VM8086 mode. The reason is that the instruction decoding support uses 32-bit opcode/address decodes rather 16-bit decodes. This patch fixes that. In addition, the patch adds support for the "stos" instruction decoding because this is a frequently used way to clear MMIO areas such as the screen. As
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...x(void) void runsyslinuxcmd(const char *cmd) { - strcpy(__com32.cs_bounce, cmd); + char *bounce; + + bounce = lmalloc(strlen(cmd) + 1); + if (!bounce) + return; + + strcpy(bounce, cmd); REG_AX(inreg) = 0x0003; // Run command - REG_BX(inreg) = OFFS(__com32.cs_bounce); - REG_ES(inreg) = SEG(__com32.cs_bounce); + REG_BX(inreg) = OFFS(bounce); + REG_ES(inreg) = SEG(bounce); __intcall(0x22, &inreg, &outreg); } @@ -62,6 +68,7 @@ void runsyslinuximage(const char *cmd, long ipappend) { unsigned int numfun = 0; char *ptr, *cmdline; + char *bou...
2013 Mar 01
0
Wine release 1.5.25
The Wine development release 1.5.25 is now available. What's new in this release (see below for details): - Proper cursor support in the Mac driver. - Fixes for right-to-left support in RichEdit. - Initial version of a Wingdings font. - Various bug fixes. The source is available from the following locations: http://prdownloads.sourceforge.net/wine/wine-1.5.25.tar.bz2
2008 Jun 19
6
login scripts --what to use
Hi, We're setting up a PDC, and would like to have a login script to deliver the mapped drives to users in particular groups, and connect to printers. The printer drivers come from the [print$], share. Does anyone have any good resources for this? What's the easiest and simplest thing to get going --vbscript or batch files? Thanks, chris
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...ot;syslnx.h" +#include <syslinux/config.h> com32sys_t inreg, outreg; // Global registers for this module @@ -35,33 +38,26 @@ void runsyslinuxcmd(const char *cmd) return; strcpy(bounce, cmd); - REG_AX(inreg) = 0x0003; // Run command - REG_BX(inreg) = OFFS(bounce); - REG_ES(inreg) = SEG(bounce); - __intcall(0x22, &inreg, &outreg); + load_kernel(bounce); } void gototxtmode(void) { - REG_AX(inreg) = 0x0005; - __intcall(0x22, &inreg, &outreg); + syslinux_force_text_mode(); } void syslinux_idle(void) { - REG_AX(inreg) = 0x0013;...