<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sail/doc, branch sail2</title>
<subtitle>Formal specification language for ISAs</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/'/>
<entry>
<title>doc: Fix building with pandoc 2.0 and above</title>
<updated>2020-09-23T13:35:56+00:00</updated>
<author>
<name>Jessica Clarke</name>
</author>
<published>2020-09-23T13:35:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=f702b004483720d0b3d135238779d68cf013aef0'/>
<id>f702b004483720d0b3d135238779d68cf013aef0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Fix RISC-V X overload</title>
<updated>2020-09-23T13:35:23+00:00</updated>
<author>
<name>Jessica Clarke</name>
</author>
<published>2020-09-23T13:35:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=bd2e3a46c298367894b7ec145810ef4521ff808b'/>
<id>bd2e3a46c298367894b7ec145810ef4521ff808b</id>
<content type='text'>
This seems to be the current name for the overload.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This seems to be the current name for the overload.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure tdiv_int and tmod_int are recognised by sail -i</title>
<updated>2020-02-06T17:21:20+00:00</updated>
<author>
<name>Alasdair Armstrong</name>
</author>
<published>2020-02-06T17:20:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=4a72cb8084237161d0bccc66f27d5fb6d24315e0'/>
<id>4a72cb8084237161d0bccc66f27d5fb6d24315e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix two example code includes</title>
<updated>2020-01-30T16:28:47+00:00</updated>
<author>
<name>Mark Wassell</name>
</author>
<published>2020-01-30T16:28:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=a575c001b724e85eebe5da857ca38390be1cfbfb'/>
<id>a575c001b724e85eebe5da857ca38390be1cfbfb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Commit missing pandoc fixes for document generation</title>
<updated>2020-01-30T15:29:04+00:00</updated>
<author>
<name>Alasdair Armstrong</name>
</author>
<published>2020-01-30T15:29:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=44179b8bcc80d30b1cd42032214a4fd8680127e1'/>
<id>44179b8bcc80d30b1cd42032214a4fd8680127e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>manual typo</title>
<updated>2019-12-07T13:39:38+00:00</updated>
<author>
<name>pes20</name>
</author>
<published>2019-12-07T13:39:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=4ca7f488fb6b3bf1d708bfe42bc26e9d83542969'/>
<id>4ca7f488fb6b3bf1d708bfe42bc26e9d83542969</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More work on GDB interface</title>
<updated>2019-11-01T20:13:36+00:00</updated>
<author>
<name>Alasdair Armstrong</name>
</author>
<published>2019-11-01T20:13:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=3aca640eaf8cb10d473c64bd1ee7c462ab2236f4'/>
<id>3aca640eaf8cb10d473c64bd1ee7c462ab2236f4</id>
<content type='text'>
The following now works to run sail on every HVC call with hafnium

function gdb_init() -&gt; unit = {
  // Connect to QEMU via GDB
  sail_gdb_qemu("");
  sail_gdb_symbol_file("hafnium.elf.sym");
  sail_gdb_send("break-insert sync_lower_exception")
}

function gdb() -&gt; unit = {
  gdb_init();
  while true do {
    sail_gdb_send("exec-continue");
    sail_gdb_sync()
  }
}
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The following now works to run sail on every HVC call with hafnium

function gdb_init() -&gt; unit = {
  // Connect to QEMU via GDB
  sail_gdb_qemu("");
  sail_gdb_symbol_file("hafnium.elf.sym");
  sail_gdb_send("break-insert sync_lower_exception")
}

function gdb() -&gt; unit = {
  gdb_init();
  while true do {
    sail_gdb_send("exec-continue");
    sail_gdb_sync()
  }
}
</pre>
</div>
</content>
</entry>
<entry>
<title>Update riscv example in manual to make it current</title>
<updated>2019-11-01T16:26:53+00:00</updated>
<author>
<name>Alasdair Armstrong</name>
</author>
<published>2019-11-01T16:26:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=24c0617820ff98a7cc46d21ededc13c9d6b56e24'/>
<id>24c0617820ff98a7cc46d21ededc13c9d6b56e24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some documentation of mappings and string matching</title>
<updated>2019-07-25T20:16:18+00:00</updated>
<author>
<name>Jon French</name>
</author>
<published>2019-07-25T20:15:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=3d753e69785533a578483acd835ad65b3d72bc49'/>
<id>3d753e69785533a578483acd835ad65b3d72bc49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some minor grammar fixes in internals.md</title>
<updated>2019-05-29T18:54:37+00:00</updated>
<author>
<name>Alasdair Armstrong</name>
</author>
<published>2019-05-29T18:54:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sail/commit/?id=8b79f357076c438e16040db03c5f42dda20b9ff9'/>
<id>8b79f357076c438e16040db03c5f42dda20b9ff9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
