Skip to content

Commit

Permalink
Fix: build break
Browse files Browse the repository at this point in the history
  • Loading branch information
uxmal committed Jan 5, 2023
1 parent 574138a commit 7a7d44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UnitTests/Arch/EmulatorTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected void Given_Code(params string[] hexStrings)
var mem = new ByteMemoryArea(addrBase, bytes);
var seg = new ImageSegment("code", mem, AccessMode.ReadWriteExecute);
var segmap = new SegmentMap(mem.BaseAddress, seg);
var program = new Program(segmap, arch, new DefaultPlatform(sc, arch));
var program = new Program(segmap, arch, new DefaultPlatform(new ServiceContainer(), arch));

var envEmu = new DefaultPlatformEmulator();

Expand Down

0 comments on commit 7a7d44f

Please sign in to comment.