1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1987-03-09 19:15:41 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1984-11-26 15:04:22 +00:00
|
|
|
|
|
|
|
/* S T A C K _ C H A N G E . H */
|
|
|
|
|
2017-11-15 21:29:27 +00:00
|
|
|
void line_change(line_p l, bool *ok_out, int *pop_out, int *push_out);
|
|
|
|
/*
|
1984-11-26 15:04:22 +00:00
|
|
|
* Try to determine how the stack-height will be
|
|
|
|
* affected by the EM instruction l. 'ok_out' is set
|
|
|
|
* to false if we fail to do so. pop_out and
|
|
|
|
* push_out are set to the number of bytes popped
|
|
|
|
* and pushed. E.g. for an "ADI 2" 4 and 2 are returned.
|
|
|
|
*/
|