summaryrefslogtreecommitdiff
path: root/test/cmake/usbx/samples/fake.c
blob: c5bdbe50567c35cda2caafa630a597a977b2e28f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "ux_api.h"

UCHAR   inpb(ULONG addr){return(0);}
USHORT  inpw(ULONG addr){return(0);}
ULONG   inpl(ULONG addr){return(0);}

UCHAR outpb(ULONG addr, UCHAR b){return(b);}
USHORT  outpw(ULONG addr, USHORT w){return(w);}
ULONG outpl(ULONG addr, ULONG l){return(l);}

void ux_test_assert_hit(char* file, INT line){};