search for: 0eh

Displaying 12 results from an estimated 12 matches for "0eh".

Did you mean: 0e
2012 Nov 13
6
Does xen-4.2.0 support VGA passthrough with the virtual machine created by xl command?
Hi, everyone! I am working on xen-4.2.0 with spice remote connect. My host is Fedora 14 and guest is win7. I have installed spice package and now I can connect to guest by spice client. For better graphics experience, I want to try the VGA passthrough. With spice tool, I have to create a VM by xl command, and now I am wondering if it supports VGA passghrouth? If so, how should I test it ?
2004 Feb 02
1
Bug in mbr.asm
...error messages. A simple fix. --- mbr.asm.orig 2002-10-03 06:02:50.000000000 -0400 +++ mbr.asm 2004-01-08 06:55:13.000000000 -0500 @@ -165,7 +165,7 @@ die: .msgloop: lodsb - xor al,al + or al,al jz .now mov ah,0Eh ; TTY output mov bx,0007h -- Pluto 2004-02-02 03:20:54.489 UTC (JD 2453037.639520) X = -5.255192111, Y = -29.339637518, Z = -7.572624207 X' = 0.003152941, Y' = -0.000685772, Z' = -0.001163977
2006 Mar 10
2
unload memdisk+FreeDOS => local boot
Sensei H. Peter Anvin, I have successfully modified/enhanced memdisk so that one can chainload a local operating system after running diskless FreeDOS. I would like your advice regarding the appropriate interface for invoking this functionality. In addition, I would like to know what steps to take so that you feel comfortable considering including this in the standard syslinux distribution.
2016 Feb 11
3
LMTP proxy does not pass RCPT TO: ... 5xx response back
...ff.2525 > 2001:638:914:f33::5:1.59466: Flags [P.], .7ia.7jT250-backend1.rz.hs-example.de 250-XCLIENT ADDR PORT TTL TIMEOUT 250-8BITMIME 250-ENHANCEDSTATUSCODES 250 PIPELINING 00:22:23.052476 IP6 2001:638:914:f33::5:1.59466 > 2001:638:914:f33::5:ff.2525: Flags [P.], 0EH....d...... ..3........ ..8 ..3.........J ..... .7jT.7iaXCLIENT ADDR=2001:638:914:f33::7:1 PORT=60574 TTL=4 TIMEOUT=30 00:22:23.052540 IP6 2001:638:914:f33::5:ff.2525 > 2001:638:914:f33::5:1.59466: Flags [P.], 0EH...E....~e.....3........ ..8 ..3........ ..J .7ia.7jT220 bac...
2009 May 04
3
[RFC][PATCH] poweroff COMBOOT module
...st cx,8 ; bit 3 APM BIOS Power Management disabled + jz connect + + mov bx, msg_pmdisabled + jmp error + +connect: + mov ax,5301h ; APM Real Mode Interface Connect (01h) + xor bx,bx ; APM BIOS (0000h) + int 15h + jnc connect_ok + + mov bx, msg_connect + jmp error + +connect_ok: + mov ax,530Eh ; APM Driver Version (0Eh) + xor bx,bx ; APM BIOS (0000h) + mov cx,0101h ; APM Driver version 1.1 + int 15h + jnc apm0101_check + + mov bx, msg_notsup + jmp error + +apm0101_check: + cmp cx,0101h ; APM Connection version + jae apm0101_ok + + mov bx, msg_notsup + jmp error + +apm0101_ok: +...
2016 Sep 25
3
Is it time to allow StringRef to be constructed from nullptr?
> On Sep 25, 2016, at 1:49 PM, Mehdi Amini via llvm-dev <llvm-dev at lists.llvm.org> wrote: > >> >> On Sep 25, 2016, at 9:10 AM, Zachary Turner via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: >> >> While porting LLDB over to StringRef, I am continuously running into difficulties caused by the fact that
2013 Feb 10
4
[PATCH] poweroff COM32 module
...Real Mode Interface Connect (01h) */ + inregs.ebx.l = 0; /* APM BIOS (0000h) */ + __intcall(0x15, &inregs, &outregs); + + if (outregs.eflags.l & EFLAGS_CF) { + printf("APM RM interface connect failed.\n"); + return 1; + } + + inregs.eax.l = 0x530e; /* APM Driver Version (0Eh) */ + inregs.ebx.l = 0; /* APM BIOS (0000h) */ + inregs.ecx.l = 0x101; /* APM Driver version 1.1 */ + __intcall(0x15, &inregs, &outregs); + + if (outregs.eflags.l & EFLAGS_CF) { + printf("APM 1.1+ not supported.\n"); + return 1; + } + + if ((outregs.ecx.l & 0xffff) &l...
2014 Jan 19
2
USB boot problems on Gigabyte GA-M55Plus-S3G
...6 mov ax, 07C0h mov ds, ax call PrintHelloWorld jmp .InfiniteLoop .InfiniteLoop: jmp .InfiniteLoop HelloWorld db "Hello World Bootloader !!", 0x0d, 0x0a, 0x00 PrintHelloWorld: mov si, HelloWorld call PrintStr ret PrintStr: push ax mov ah, 0Eh .loop: lodsb cmp al, 0x00 je .done int 10h jmp .loop .done: pop ax ret times 510-($-$$) db 0 dw 0xAA55 ' > hello.asm nasm -f bin -o hello.bin hello.asm dd status=noxfer conv=notrunc if=hello.bin of=hello.img kvm hello.img On...
2008 Nov 22
5
[RFC][PATCH] Gfxboot COMBOOT module
...v bx, msg_usage + int 22h + ret +continue: + mov di,pspCmdArg+1 + add di,cx + dec di + std + mov al,' ' + repe scasb + inc cx + cld + mov [pspCmdLen],cl + mov si,pspCmdArg+1 + mov di,si + add di,cx + xor al,al + stosb + mov si,pspCmdArg+1 + +; get config file name + mov ax,0eh + int 22h + +; open config file + mov si,bx ; es:bx config file name + mov ax,6 + int 22h + jc no_config_file + and eax,eax + jz no_config_file + jmp got_config_file +no_config_file: + push es + push bx + push cs + pop es + mov bx, msg_config_file + mov ax,2 + int 22h + mov bx, msg_...
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
...v bx, msg_usage + int 22h + ret +continue: + mov di,pspCmdArg+1 + add di,cx + dec di + std + mov al,' ' + repe scasb + inc cx + cld + mov [pspCmdLen],cl + mov si,pspCmdArg+1 + mov di,si + add di,cx + xor al,al + stosb + mov si,pspCmdArg+1 + +; get config file name + mov ax,0eh + int 22h + +; open config file + mov si,bx ; es:bx config file name + mov ax,6 + int 22h + jc no_config_file + and eax,eax + jz no_config_file + jmp got_config_file +no_config_file: + push es + push bx + push cs + pop es + mov bx, msg_config_file + mov ax,2 + int 22h + mov bx, msg_...
2014 Jan 18
5
USB boot problems on Gigabyte GA-M55Plus-S3G
> > In message <BLU0-SMTP2805E16A0E7A33B925EDF458BB80 at phx.gbl>, > Ady <ady-sf at hotmail.com> wrote: > > >Now, to move forward with Clonezilla in your USB drive, we need to > >proceed with some steps that are not as simple as dd'ing an image. > > Apologies for my impertinence, but I have one question: Why? > > I was under the impression
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...z0k)6&*?ABtApW z#%Aa;M$1gSF*8%YD)r-akU%DI^JUF4x<Ib<Yns`sb+hWf at QxxsB;o386H~p^$298B z627x8d~*lJcTzLk^&-BLgs&Zyoaf+cr%KYW-AVX%y6`>e)b0Zomvg)y!8 at NTOS}sW z_bd%_ajx{B>s)Dpli&mrEaYDN6H2g`671CyC(w)7xtC{S<+KHGb>+iqY#(){H*-Qu z9HL?!ausWlgLW#av6#``MriM+YTU0Urs^f?0ff+{9x%0EH`u3kT=*HT!Y^@h=|nC| zxwbgH>!e&d`(xqcGhNA-Imss>`SLp3fY>BTK1qiqB8CWaZ`pnG74^**Xsd39hb+$* zwk!`hGGAzkOO)>=S8J>s0L@`S^C8fza?ns03p5`Rnh&+a7DBVdg=V!=-aaH;<IK2E z3I0<p(RcNXqgL%ytr^z`2ujK`uJ5WDN736U!|kpN*E$(~j0~UR41b?8+)Wwo))F6U z1N7nps_4a!wZuWfchH4zorCWp at U3@7=S9MI(HfoiyL#wpC...