Displaying 2 results from an estimated 2 matches for "themeselv".
Did you mean:
  themselv
  
2007 Sep 26
2
generate fourth vector based on known correlations
I am trying to generate a fourth vector,z, given three known and fixed 
vectors, x1,x2,x3 with corresponding known and fixed correlations with 
themeselves and with z. That is, all correlations are known and 
prespecified. How can I do this?
Thank you,
ben
2006 Aug 14
4
[PATCH] HVM SMBIOS v3 [5/5]
...rombios.c	Fri Aug 11 14:55:22 2006 -0400
@@ -9443,6 +9443,43 @@ rom_scan_increment:
   mov  ds, ax
   ret
 
+#ifdef HVMASSIST
+
+; Copy the SMBIOS entry point over from 0x9f000, where hvmloader left it.
+; The entry point must be somewhere in 0xf0000-0xfffff on a 16-byte boundary,
+; but the tables themeselves can be elsewhere.
+smbios_init:
+  push ax
+  push cx
+  push es
+  push ds
+  push di
+  push si
+
+  mov cx, #0x001f ; 0x1f bytes to copy
+  mov ax, #0xf000
+  mov es, ax      ; destination segment is 0xf0000
+  mov di, smbios_entry_point ; destination offset
+  mov ax, #0x9f00
+  mov ds, ax...