aboutsummaryrefslogtreecommitdiff
path: root/ops/add.c
blob: 164307e758cfd5e2e04180cc15a5d72432fa46f2 (plain) (blame)
1
2
3
4
5
6
7
#include "common.h"

DEFINE_OP(add)
{
	UNUSED(a);
	NEXT_OP(sp, x + y, x, y, o);
}