search for: p_dx

Displaying 3 results from an estimated 3 matches for "p_dx".

Did you mean: p_bx
2015 Feb 02
2
[LLVMdev] Basic AliasAnalysis: Can GEPs with the same base but different constant indices into a struct alias?
On Mon, Feb 2, 2015 at 10:59 AM, Chandler Carruth <chandlerc at google.com> wrote: > > On Mon, Feb 2, 2015 at 10:55 AM, Ahmed Bougacha <ahmed.bougacha at gmail.com> > wrote: > >> Ah yes, the structs are what make it messy. >> >> How about the more useful constraint: >> - the (identical) base must point to a (possibly multidimensional) array >>
2010 Jul 27
2
[PATCH] core: remove HAS_LOCALBOOT
...ed-off-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/core/comboot.inc b/core/comboot.inc index 59db7ec..d6f670c 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -723,13 +723,9 @@ comapi_idle: ; ; INT 22h AX=0014h Local boot ; -%if HAS_LOCALBOOT comapi_localboot: mov ax,P_DX jmp local_boot -%else -comapi_localboot equ comapi_err -%endif ; HAS_LOCALBOOT ; ; INT 22h AX=0015h Feature flags diff --git a/core/config.inc b/core/config.inc index 269e13e..999d3d9 100644 --- a/core/config.inc +++ b/core/config.inc @@ -27,11 +27,6 @@ BAUD_DIVISOR equ 115200 ; Serial port...
2009 Mar 01
0
[PATCH 1/3] COMBOOT API: Improve readdir
...'t change existing behavior, thereby breaking existing code. diff --git a/core/comboot.inc b/core/comboot.inc index 2ff5f33..bab3d6a 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -1092,7 +1092,7 @@ comapi_readdir: mov si,P_SI call readdir mov P_EAX,eax - mov P_DL,dl + mov P_DX,dx mov P_EBX,ebx mov P_SI,si ret diff --git a/core/ldlinux.asm b/core/ldlinux.asm index a24f396..bb5bf14 100644 --- a/core/ldlinux.asm +++ b/core/ldlinux.asm @@ -1377,6 +1377,40 @@ searchdir: ret ; +; fatattr_to_st_mode: Translate a FAT attribute to struct stat st_mode. +; +; DL FAT A...