blob: ef380cdfa87ec21b12fe44bea40d2652c3627e2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "3cl.h"
#include "instruction.h"
#include "stack.h"
struct CCLFrame *ccl_instruction_pushzero(struct CCL *ccl, struct CCLFrame *frame)
{
ccl_stack_push(&ccl->stack, 0);
return frame;
}
|