Retro68/AutomatedTests/Segment2.c

13 lines
130 B
C
Raw Normal View History

2017-10-07 00:03:37 +00:00
extern int variable;
#include <SegLoad.h>
void Foo()
{
variable *= 9;
2017-10-07 00:03:37 +00:00
}
void Bar()
{
variable /= 9;
variable *= 7;
2017-10-07 00:03:37 +00:00
}