<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Kavkaz86's Feed - Programmer's Heaven</title>
    <link>http://www.programmersheaven.com/feed/User/326423/RSS.aspx</link>
    <description>Events at Programmer's Heaven related to the user Kavkaz86.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Mon, 20 May 2013 05:09:06 -0700</pubDate>
    <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>
    <item>
      <title>8086 Code Help Please !</title>
      <link />
      <description>&lt;p&gt;Posted the message '8086 Code Help Please !' on the Assembler Developer forum.&lt;/p&gt;&lt;strong&gt;Write an 8086 assembly language program that will read a single byte arbitrary hex value declared in the data section of the code, convert this value into decimal, display it on the screen and then exit back to DOS. For example, if the value defined in your data section is:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Val DB 0FFh&lt;br /&gt;
Then your code should produce as output:&lt;br /&gt;
255&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;N.B. You can use the DOS write string interrupt service to facilitate display of the converted value. For example, the following code fragment will display the “$” terminated string pointed to by the label ‘Str’ at the current cursor position:&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
mov DX, &lt;br /&gt;
offset Str ; Set DX to point to address of first ASCII char in string&lt;br /&gt;
mov AH, 09h ; Select DOS ASCII string writing service&lt;br /&gt;
int 21h ; Call DOS - Write the string&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;For example if ‘Str’ is defined as:&lt;/em&gt;&lt;br /&gt;
Str DB “Hello World”, “$”&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;The above code fragment will output:&lt;/em&gt;&lt;br /&gt;
Hello World&lt;br /&gt;</description>
      <pubDate>Tue, 09 Sep 2008 01:04:34 -0700</pubDate>
    </item>
  </channel>
</rss>