Remove references to obsoleted REAL_CALL from documentation.

pull/1/head
Michael Brown 2006-05-24 09:16:48 +00:00
parent 3b525385af
commit 83d80d9e79
2 changed files with 2 additions and 10 deletions

View File

@ -113,16 +113,9 @@ typedef struct segoff segoff_t;
*/ */
/* /*
* REAL_CALL ( routine, num_out_constraints, out_constraints,
* in_constraints, clobber )
* REAL_EXEC ( name, asm_code_str, num_out_constraints, out_constraints, * REAL_EXEC ( name, asm_code_str, num_out_constraints, out_constraints,
* in_constraints, clobber ) * in_constraints, clobber )
* *
* If you have a pre-existing real-mode routine that you want to make
* a far call to, use REAL_CALL. If you have a code fragment that you
* want to copy down to base memory, execute, and then remove, use
* REAL_EXEC.
*
* out_constraints must be of the form OUT_CONSTRAINTS(constraints), * out_constraints must be of the form OUT_CONSTRAINTS(constraints),
* and in_constraints must be of the form IN_CONSTRAINTS(constraints), * and in_constraints must be of the form IN_CONSTRAINTS(constraints),
* where "constraints" is a constraints list as would be used in an * where "constraints" is a constraints list as would be used in an

View File

@ -421,9 +421,8 @@ prot_call:
* callee to preserve. Gate A20 will be re-enabled in case the * callee to preserve. Gate A20 will be re-enabled in case the
* real-mode routine disabled it. * real-mode routine disabled it.
* *
* librm.h defines two convenient macros for using real_call: * librm.h defines a convenient macro REAL_EXEC() for using real_call.
* REAL_CALL and REAL_EXEC. See librm.h and realmode.h for details * See librm.h and realmode.h for details and examples.
* and examples.
* *
* Parameters: * Parameters:
* (32-bit) near pointer to real-mode function to call * (32-bit) near pointer to real-mode function to call