mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 10:02:42 +03:00
[i386] Rename __cdecl to __asmcall
__cdecl is a misleading name, since it currently encapsulates both cdecl and regparm(0) attributes. Rename to __asmcall.
This commit is contained in:
@@ -322,7 +322,7 @@ static int int13_get_extended_parameters ( struct int13_drive *drive,
|
||||
* INT 13 handler
|
||||
*
|
||||
*/
|
||||
static __cdecl void int13 ( struct i386_all_regs *ix86 ) {
|
||||
static __asmcall void int13 ( struct i386_all_regs *ix86 ) {
|
||||
int command = ix86->regs.ah;
|
||||
unsigned int bios_drive = ix86->regs.dl;
|
||||
struct int13_drive *drive;
|
||||
|
||||
Reference in New Issue
Block a user