1/*
2 * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#ifndef _PAYLOAD_
8#define _PAYLOAD_
9
10struct payload {
11    int sz;
12    int operands[100];
13    int result;
14};
15
16#endif
17