Skip to content

Commit

Permalink
Missed an XML attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
uxmal committed Oct 28, 2015
1 parent f82b4b5 commit 25a2df1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Core/Configuration/TypeLibraryElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class TypeLibraryElement : ConfigurationElement, ITypeLibraryElement
public string Name
{
get { return (string) this["Name"]; }
set { this["name"] = value; }
set { this["Name"] = value; }
}

[ConfigurationProperty("Arch", IsRequired=false)]
Expand Down
2 changes: 1 addition & 1 deletion src/Drivers/CmdLine/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<TypeLibraries>
<TypeLibrary Name="libc.so.xml" />
<TypeLibrary Name="Xlib.xml" />
<TypeLibrary Arch="x86-protected-32" name="linux-syscalls-i386.xml" />
<TypeLibrary Arch="x86-protected-32" Name="linux-syscalls-i386.xml" />
</TypeLibraries>
<Characteristics>
<TypeLibrary Name="sysvcharacteristics.xml" />
Expand Down
4 changes: 3 additions & 1 deletion subjects/MZ-x86/BENCHFN.dis
Original file line number Diff line number Diff line change
Expand Up @@ -3743,7 +3743,9 @@ l0800_1B21:
sp = sp + 0x0002
cx = cx + 0x0003
SCZO = cond(cx)
goto cx
call cx (retsize: 4;)
return
// succ: fn0800_1B06_exit
l0800_1B27:
branch Test(EQ,Z) l0800_1B21
// succ: l0800_1B29 l0800_1B21
Expand Down

0 comments on commit 25a2df1

Please sign in to comment.