<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic accessing individual bytes of int variable in Classic/Legacy CodeWarrior</title>
    <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142674#M1481</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there an easy way to access the individual bytes of an integer (16 bit) variable? Something like #HIGH int_variable and #LOW int_variable. Or do I have to resort to masking/shifting operations?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Aug 2007 19:49:25 GMT</pubDate>
    <dc:creator>stevec</dc:creator>
    <dc:date>2007-08-10T19:49:25Z</dc:date>
    <item>
      <title>accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142674#M1481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there an easy way to access the individual bytes of an integer (16 bit) variable? Something like #HIGH int_variable and #LOW int_variable. Or do I have to resort to masking/shifting operations?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 19:49:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142674#M1481</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2007-08-10T19:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142675#M1482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Which language?&lt;BR /&gt;From C, the masking and shifting looks like the "easy way" to me.&lt;BR /&gt;Of course you can also cast the address to a unsigned char pointer, and then operate on that, but I think the masking/shifting approach is cleaner.&lt;BR /&gt;What is more appropriate probably also also on why you want to access the individual bytes in the first place. When accessing the bytes via their address, you are responsible for the endianess adaptation, when using shift and masking, the compiler does that for you.&lt;BR /&gt;As third approach you can also use a union, but that does help much compared to the access via "unsigned char*".&lt;BR /&gt;&lt;BR /&gt;Daniel&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 22:20:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142675#M1482</guid>
      <dc:creator>CompilerGuru</dc:creator>
      <dc:date>2007-08-10T22:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142676#M1483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thanks for that.&lt;BR /&gt;My thinking is that if the compiler knows where the variable is in memory it can access each byte of the int individually. I have used something similar but can't remember if it was with a C compiler (Keil for 8051) or an&amp;nbsp; assembler.&amp;nbsp; I have a data string which I need to substitute an integer value for two of the bytes in the string.&lt;BR /&gt;e.g. buff[i] = upper byte of int&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buff[i+1] = lower byte of int&lt;BR /&gt;&lt;BR /&gt;Or can I just say&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; buff[i] = int&amp;nbsp;&amp;nbsp;&amp;nbsp; and it will do the same&lt;BR /&gt;&lt;BR /&gt;Shifting 8 times seems a little inefficient.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 22:35:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142676#M1483</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2007-08-10T22:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142677#M1484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Writing a shift by 8 does not mean that the compiler will emit 8 single bit shifts. Well, it could, but it does not have to in case it knows a better pattern instead.&lt;BR /&gt;What it does for you, you have to see with your compiler.&lt;BR /&gt;&lt;BR /&gt;For&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;int i;unsigned char c0[2];unsigned char c1[2];union {  char c[2];  int i;} c2;void f0(void) {  c0[0]=(unsigned char)(i &amp;gt;&amp;gt; 8);  c0[1]=(unsigned char)(i);}void f1(void) {  *(int*)c1=i;}void f2(void) {  c2.i= i; // read as c2.c;}&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;&amp;nbsp;I get with HC08 V6.0:&lt;BR /&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;    8:  void f0(void) {    9:    c0[0]=(unsigned char)(i &amp;gt;&amp;gt; 8);  0000 c60000   [4]             LDA   i  0003 c70000   [4]             STA   c0   10:    c0[1]=(unsigned char)(i);  0006 c60001   [4]             LDA   i:1  0009 c70001   [4]             STA   c0:1   11:  }  000c 81       [4]             RTS      12:  void f1(void) {   13:    *(int*)c1=i;  0000 c60001   [4]             LDA   i:1  0003 c70001   [4]             STA   c1:1  0006 c60000   [4]             LDA   i  0009 c70000   [4]             STA   c1   14:  }  000c 81       [4]             RTS      15:  void f2(void) {   16:    c2.i= i; // read as c2.c;  0000 c60001   [4]             LDA   i:1  0003 c70001   [4]             STA   c2:1  0006 c60000   [4]             LDA   i  0009 c70000   [4]             STA   c2   17:  }  000c 81       [4]             RTS      18: &lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;So the different syntaxes to write do not differ much in their generated code (actually for those cases not at all).&lt;BR /&gt;The results could vary however depending on other details, like if the variables are locals or pointers (or others).&lt;BR /&gt;&lt;BR /&gt;Anyway, the syntax I would choose depends on what I would try to do, not on whether the particular compiler wastes a few bytes. With the arithmetic shift, the C code explicitly defines the endianess of the encoded characters, so I would probably prefer that in many cases. When copying the an int or the union, then the endianess encoded is defined by the architecture and that code also silently assumes the int is 2 char's wide.&lt;BR /&gt;&lt;BR /&gt;Daniel&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 08:42:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142677#M1484</guid>
      <dc:creator>CompilerGuru</dc:creator>
      <dc:date>2020-10-29T08:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142678#M1485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;I use c MACROS to access high low btyes, words as follows.&amp;nbsp; By using macros the compiler will handle all byte/memory ordering automatically.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;c example&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;WORD TestWord = 0xab;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BYTE HighByte, LowByte;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;HighByte = HIBYTE(TestWord);&lt;/DIV&gt;&lt;DIV&gt;LowByte = LOBYTE(TestWord);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;/* Type defines */typedef long  DWORD;typedef int  WORD;typedef char BYTE;typedef unsigned long UDWORD;typedef unsigned int UWORD;typedef unsigned char UBYTE;typedef DWORD INT32;typedef WORD INT16;typedef BYTE    INT8;typedef UDWORD UINT32;typedef UWORD UINT16;typedef UBYTE UINT8;typedef BYTE BOOLEAN;typedef WORD STACK;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;/* Returns the low byte of the word  */#define LOBYTE(w)  ((BYTE)(w))/* Returns the high byte of the word  */#define HIBYTE(w)  ((BYTE)(((WORD)(w) &amp;gt;&amp;gt; 8) &amp;amp; 0xFF))/* Makes a word from \a low byte and \a high byte. */#define MAKEWORD(low, high) ((WORD)(((BYTE)(low)) | (((WORD)((BYTE)(high))) &amp;lt;&amp;lt; 8)))/* Returns the low word of the double word */#define LOWORD(l)  ((UINT16)(UINT32)(l))/* Returns the high word of the double word */#define HIWORD(l)  ((UINT16)((((UINT32)(l)) &amp;gt;&amp;gt; 16) &amp;amp; 0xFFFF))/* Returns the low signed word of the double word */#define LOSWORD(l)  ((WORD)(DWORD)(l))/* Returns the high signed word of the double word */#define HISWORD(l)  ((WORD)((((DWORD)(l)) &amp;gt;&amp;gt; 16) &amp;amp; 0xFFFF))/* Makes a double word from low word and a high word. */#define MAKELONG(low, high) ((UINT32)(((UINT16)(low)) | (((UINT32)((UINT16)(high))) &amp;lt;&amp;lt; 16)))&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 08:42:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142678#M1485</guid>
      <dc:creator>Technoman1964</dc:creator>
      <dc:date>2020-10-29T08:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142679#M1486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;If it's any help, I have always declared a structure for this type of thing. E.g.&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#3333FF"&gt;typedef union uREG16&amp;nbsp;&amp;nbsp;&amp;nbsp; /*16 bit register with word and byte access*/&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; tU16&amp;nbsp; word;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*access whole word&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;&amp;nbsp; struct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*access byte at a time*/&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tU08&amp;nbsp; msb;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tU08&amp;nbsp; lsb;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }byte;&lt;BR /&gt;&amp;nbsp; }tREG16;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To use it, declare a variable e.g.&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#3333FF"&gt;tREG16&amp;nbsp; intData;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To access this as a 16-bit word, use:&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#3333FF"&gt;intData.word = 0x4055;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To access the individual bytes:&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#3333FF"&gt;intData.byte.msb = 0x40;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#3333FF"&gt;intData.byte.lsb = 0x55;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I use CodeWarrior version 4.5. If you selecte the "Code completion" options in "IDE Preferences" then you can get the IDE to give you the options as soon as you hit the period key "."&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Hope this helps &lt;IMG alt=":smileyhappy:" class="emoticon emoticon-smileyhappy" id="smileyhappy" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-happy.gif" title="Smiley Happy" /&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:47:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142679#M1486</guid>
      <dc:creator>Stephen</dc:creator>
      <dc:date>2007-08-29T09:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142680#M1487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;PS I should have explained - in the above example, tU08 is an 8-bit variable (equivalent to &lt;STRONG&gt;unsigned char&lt;/STRONG&gt;) and tU16 is a 16-bit variable (equivalent to &lt;STRONG&gt;int&lt;/STRONG&gt;).&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 11:16:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142680#M1487</guid>
      <dc:creator>Stephen</dc:creator>
      <dc:date>2007-08-29T11:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: accessing individual bytes of int variable</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142681#M1488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;If you use bitwise operators to get the low and high bytes of a word, this should work the same on all microcontollers...&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;x&amp;amp;0xff is the least significant byte of x,&lt;/DIV&gt;&lt;DIV&gt;and (x&amp;gt;&amp;gt;8)&amp;amp;0xff is the next lowest byte,&lt;/DIV&gt;&lt;DIV&gt;and (x&amp;gt;&amp;gt;16)&amp;amp;0xff is the next lowest byte, etc..&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;HOWEVER,&amp;nbsp;&amp;nbsp;there is an important gotcha that must be dealt with especially when transferring data between Intel and Freescale processors...&amp;nbsp; ENDIANNESS.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In Freescale microcontroller, a 16 bit word is stored in memory with the most significant byte first.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;For example, the decimal number 12345 (0x3039 hex)&amp;nbsp; would be stored in memory as&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;0x30 0x39 .&amp;nbsp; This is known as "Big Endian."&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In many Intel based environments,&amp;nbsp; a 16 bit word's bytes are stored in memory BACKWARDS with the least significant byte first! This is known as "Little Endian"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;For example, the decimal number 12345 (0x3039 hex)&amp;nbsp; would be stored in memory as&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;0x39 0x30 .&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Please consider this code:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;void foo(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;unsigned short x=12345;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;unsigned char MH,ML,H,L;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;H=(x&amp;gt;&amp;gt;8)&amp;amp;0xFF;&amp;nbsp; // get most significant byte of x&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;L=x&amp;amp;0xFF;&amp;nbsp; // get least significant byte of x&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;MH=*(unsigned char *)(&amp;amp;x);&amp;nbsp;&amp;nbsp;&amp;nbsp; // get first byte of x in memory&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;ML=*(unsigned char *)(&amp;amp;x+1);&amp;nbsp; // get second byte of x in memory&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;on a freescale processor, at the end of this function, H will equal MH, and L will equal ML.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;on an intel&amp;nbsp;processor, H will equal ML and L will equal MH!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;On projects what involve data transfer between a freescale device and a windows-based controller,&amp;nbsp; you will need to&amp;nbsp;flip&amp;nbsp;a word's bytes around&amp;nbsp;to convert between big endian and little endian formats!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I hope this helps.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Craig&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 06:08:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/accessing-individual-bytes-of-int-variable/m-p/142681#M1488</guid>
      <dc:creator>Shortbus</dc:creator>
      <dc:date>2007-10-08T06:08:30Z</dc:date>
    </item>
  </channel>
</rss>

