mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-01 04:04:28 +00:00
19 lines
184 B
C
19 lines
184 B
C
|
#ifndef _MOS6502_TESTS_H
|
||
|
#define _MOS6502_TESTS_H
|
||
|
|
||
|
static mos6502 *cpu;
|
||
|
|
||
|
static void
|
||
|
setup()
|
||
|
{
|
||
|
cpu = mos6502_create();
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
teardown()
|
||
|
{
|
||
|
mos6502_free(cpu);
|
||
|
}
|
||
|
|
||
|
#endif
|