<feed xmlns='http://www.w3.org/2005/Atom'>
<title>torque-asm, branch v2.2.0</title>
<subtitle>Lightweight meta-assembler</subtitle>
<id>https://code.benbridle.com/torque-asm/atom?h=v2.2.0</id>
<link rel='self' href='https://code.benbridle.com/torque-asm/atom?h=v2.2.0'/>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/'/>
<updated>2025-04-17T04:47:28Z</updated>
<entry>
<title>Update version to 2.2.0</title>
<updated>2025-04-17T04:47:28Z</updated>
<author>
<name>Ben Bridle</name>
<email>bridle.benjamin@gmail.com</email>
</author>
<published>2025-04-17T04:47:28Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=14ee374b3e568b50c3297277a055cdb366641b88'/>
<id>urn:sha1:14ee374b3e568b50c3297277a055cdb366641b88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement octal literals</title>
<updated>2025-04-17T04:37:45Z</updated>
<author>
<name>Ben Bridle</name>
<email>bridle.benjamin@gmail.com</email>
</author>
<published>2025-04-17T04:37:45Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=6eb86dc668ccd3e3b263f5942ab4eef63f49a7db'/>
<id>urn:sha1:6eb86dc668ccd3e3b263f5942ab4eef63f49a7db</id>
<content type='text'>
Octal literals use the prefix '0o'.
</content>
</entry>
<entry>
<title>Update version to 2.1.0</title>
<updated>2025-04-14T21:35:14Z</updated>
<author>
<name>Ben Bridle</name>
<email>bridle.benjamin@gmail.com</email>
</author>
<published>2025-04-14T21:35:14Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=9f9bc54fca071277cbe73b5e163c08d27e4da52a'/>
<id>urn:sha1:9f9bc54fca071277cbe73b5e163c08d27e4da52a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove brackets from format names in program help text</title>
<updated>2025-04-11T22:29:03Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-11T22:28:45Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=ad07458a267ee23dd386b1809842f696356ff187'/>
<id>urn:sha1:ad07458a267ee23dd386b1809842f696356ff187</id>
<content type='text'>
These could be misleading, they could incorrectly indicate that the
brackets are part of the format name.
</content>
</entry>
<entry>
<title>Add the cmd format to the list in program help text</title>
<updated>2025-04-11T22:29:03Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-11T22:27:10Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=32b0861a8045a695aca155e946332ce8b958a6a7'/>
<id>urn:sha1:32b0861a8045a695aca155e946332ce8b958a6a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix width checks for negative integers</title>
<updated>2025-04-11T22:19:26Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-11T22:19:26Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=dddb76c4ad504022fa4f4c4f6965c08da22c387e'/>
<id>urn:sha1:dddb76c4ad504022fa4f4c4f6965c08da22c387e</id>
<content type='text'>
The width of a negative integer was previously being counted in the
same way as for a positive integer, by inverting the bits to make it a
positive integer and then finding the placement of the highest-order 1
bit.

The actual width of a negative integer will always be one greater than
this value however, because the highest-order 1 bit of an inverted
negative integer will always have directly above it a significant 0 bit
used as the sign bit.
</content>
</entry>
<entry>
<title>Implement negative integer literals</title>
<updated>2025-04-11T22:08:09Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-11T22:08:09Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=c724c9157dbc4721fa8ed93033cd9699c9652277'/>
<id>urn:sha1:c724c9157dbc4721fa8ed93033cd9699c9652277</id>
<content type='text'>
Negative literals take the forms -29, -0x1D, and -0b11101 for decimal,
hexadecimal, and binary.
</content>
</entry>
<entry>
<title>Add support for the CP/M CMD file module format</title>
<updated>2025-04-11T04:18:31Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-11T04:18:31Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=6d016989b0ff5f600f3bdaced1ebf443d2f32da7'/>
<id>urn:sha1:6d016989b0ff5f600f3bdaced1ebf443d2f32da7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update version to 2.0.2</title>
<updated>2025-04-01T04:16:53Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-01T04:16:53Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=2d29e79715c1208655316cce517713590894f5a6'/>
<id>urn:sha1:2d29e79715c1208655316cce517713590894f5a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update assembler dependency</title>
<updated>2025-04-01T04:16:40Z</updated>
<author>
<name>Ben Bridle</name>
<email>ben@derelict.engineering</email>
</author>
<published>2025-04-01T04:16:40Z</published>
<link rel='alternate' type='text/html' href='https://code.benbridle.com/torque-asm/commit/?id=d718ffbf899cc3622a99d2d510a1a58506d45c49'/>
<id>urn:sha1:d718ffbf899cc3622a99d2d510a1a58506d45c49</id>
<content type='text'>
</content>
</entry>
</feed>
