<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'machine language' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'machine language' posted on the 'Assembler Developer' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Tue, 18 Jun 2013 00:39:01 -0700</pubDate>
    <lastBuildDate>Tue, 18 Jun 2013 00:39:01 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>machine language</title>
      <link>http://www.programmersheaven.com/mb/pharabee/244412/244412/machine-language/</link>
      <description>I have to add 2,-3, and 6 in machine language. does anyone know how to do this?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pharabee/244412/244412/machine-language/</guid>
      <pubDate>Sun, 22 Feb 2004 19:57:25 -0700</pubDate>
      <category>Assembler Developer</category>
    </item>
    <item>
      <title>Re: machine language</title>
      <link>http://www.programmersheaven.com/mb/pharabee/244412/244573/re-machine-language/#244573</link>
      <description>: I have to add 2,-3, and 6 in machine language. does anyone know how to do this?&lt;br /&gt;
: &lt;br /&gt;
; Add.asm&lt;br /&gt;
;&lt;br /&gt;
; Assemble with:&lt;br /&gt;
;     NASM Add.asm -o Add.com&lt;br /&gt;
;&lt;br /&gt;
&lt;br /&gt;
        org 100h&lt;br /&gt;
&lt;br /&gt;
        mov al, 02&lt;br /&gt;
        add al, -03&lt;br /&gt;
	add al, 06&lt;br /&gt;
&lt;br /&gt;
        ret&lt;br /&gt;
&lt;br /&gt;
However, if you need the actual hex code (since the subject is 'machine language' instead of 'assembly'), then here is a disassembly with the ML in the middle column:&lt;br /&gt;
&lt;br /&gt;
00000000  B002              mov al,0x2&lt;br /&gt;
00000002  04FD              add al,0xfd&lt;br /&gt;
00000004  0406              add al,0x6&lt;br /&gt;
00000006  C3                ret&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pharabee/244412/244573/re-machine-language/#244573</guid>
      <pubDate>Mon, 23 Feb 2004 18:39:03 -0700</pubDate>
      <category>Assembler Developer</category>
    </item>
  </channel>
</rss>