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

DEFINE_OP(sub)
{
	UNUSED(a);
	NEXT_OP(sp, x - y, a, y, o);
}