<feed xmlns='http://www.w3.org/2005/Atom'>
<title>yaxpeax-x86/CHANGELOG, branch 0.1.4</title>
<subtitle>yaxpeax x86 decoder</subtitle>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/'/>
<entry>
<title>fix decoding of rex-prefixed modrm+sib operands selecting index 0b100 and base 0b101</title>
<updated>2020-11-20T02:13:24+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-11-20T02:13:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=81e9b93aab9217cf7cb508f64b19fc1c0df024b5'/>
<id>81e9b93aab9217cf7cb508f64b19fc1c0df024b5</id>
<content type='text'>
for memory operands with a base, index, and displacement either
the wrong base would be selected (register number ignored, so only
`*ax` or `r8*` would be reported), or yaxpeax-x86 would report a
base register is present when it is not (`RegIndexBaseScaleDisp`
when the operand is actually `RegScaleDisp`)

thank you to Evan Johnson for catching and reporting this bug!

also bump crate version to 0.1.4 as this will be immediately tagged and
released.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
for memory operands with a base, index, and displacement either
the wrong base would be selected (register number ignored, so only
`*ax` or `r8*` would be reported), or yaxpeax-x86 would report a
base register is present when it is not (`RegIndexBaseScaleDisp`
when the operand is actually `RegScaleDisp`)

thank you to Evan Johnson for catching and reporting this bug!

also bump crate version to 0.1.4 as this will be immediately tagged and
released.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix misdecode of instructions in opcode 0x80</title>
<updated>2020-10-27T07:57:33+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-10-27T07:57:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=39aaebeb48c30b96b4ff8b66663a1452e2571426'/>
<id>39aaebeb48c30b96b4ff8b66663a1452e2571426</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add RegSpec constructors, consts, and const fns</title>
<updated>2020-08-15T20:15:29+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-15T20:15:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=fb9ead64e6c7d96c02627b01b6a85921e2d8f7a4'/>
<id>fb9ead64e6c7d96c02627b01b6a85921e2d8f7a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add register class constants to allow reasoning about register operands</title>
<updated>2020-08-15T18:39:04+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-15T18:38:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=a0b1fddbb55cbab9d482d4f8cffc7ffe87f73864'/>
<id>a0b1fddbb55cbab9d482d4f8cffc7ffe87f73864</id>
<content type='text'>
also bump to 0.1.1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also bump to 0.1.1
</pre>
</div>
</content>
</entry>
<entry>
<title>inaugural 0.1.0 release!</title>
<updated>2020-08-10T03:49:12+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-10T03:49:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=6248d3c5f7dd196acdfce5c0da1608fed81b43cd'/>
<id>6248d3c5f7dd196acdfce5c0da1608fed81b43cd</id>
<content type='text'>
add doc comments for public items, record changelog, and lets ship this!!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add doc comments for public items, record changelog, and lets ship this!!
</pre>
</div>
</content>
</entry>
<entry>
<title>adjust public interface: public items should all be stable</title>
<updated>2020-08-10T03:43:42+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-10T03:43:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=8f857a2fcbdfc7315cd09c0a4ac372b3ec92b538'/>
<id>8f857a2fcbdfc7315cd09c0a4ac372b3ec92b538</id>
<content type='text'>
`OperandCode` (obviously) wildly varies depending on how i feel on a
given week, so it's now hidden to avoid people depending on numerical
values of its discriminants.

`RegisterBank` got a similar treatment with a new `RegisterClass` struct
that's suitable for public use.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`OperandCode` (obviously) wildly varies depending on how i feel on a
given week, so it's now hidden to avoid people depending on numerical
values of its discriminants.

`RegisterBank` got a similar treatment with a new `RegisterClass` struct
that's suitable for public use.
</pre>
</div>
</content>
</entry>
<entry>
<title>add to changelog</title>
<updated>2020-08-09T08:44:16+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-09T08:44:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=dcea0a9548a91bb3726bf64364a9e37fc0f7f204'/>
<id>dcea0a9548a91bb3726bf64364a9e37fc0f7f204</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>x87 support, plus several other missing instructions</title>
<updated>2020-08-09T08:38:57+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-08-03T01:40:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=7c09cd975b9251f633a3adb0b6149ea98d3dcee7'/>
<id>7c09cd975b9251f633a3adb0b6149ea98d3dcee7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update changelog and bump version</title>
<updated>2020-07-18T19:20:05+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-07-18T19:20:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=cdc24378eedebf7ab3f7b51e88794a7a15309009'/>
<id>cdc24378eedebf7ab3f7b51e88794a7a15309009</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix docs up, fix the spelling of penryn</title>
<updated>2020-05-24T04:30:41+00:00</updated>
<author>
<name>iximeow</name>
<email>me@iximeow.net</email>
</author>
<published>2020-05-24T04:30:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.iximeow.net/yaxpeax-x86/commit/?id=ec91652b25acba3ab9f5c5e2b8b9ae497c3d6474'/>
<id>ec91652b25acba3ab9f5c5e2b8b9ae497c3d6474</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
