<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2383053651532778781</id><updated>2011-04-21T15:24:43.882-07:00</updated><title type='text'>""Prinzjack""</title><subtitle type='html'>COMPUTER HISTORY</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2383053651532778781.post-8429919756802481448</id><published>2008-10-05T19:17:00.000-07:00</published><updated>2008-10-09T17:34:37.222-07:00</updated><title type='text'>Question in Final</title><content type='html'>&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Question:&lt;/span&gt; Since not all MCS 213 students can try DEBUG commands because of the technical problems of our computers, search now any Turbo C program with assembly codes in it and run this in your PC. Check the result of your running C program.&lt;br /&gt;&lt;br /&gt;If the program produces the expected output, copy the Turbo C codes into your post and its result. You may do this by pressing Print Screen on your keyboard for the result of your program then, switch to Paint Brush and Paste. Resize the window and copy this to your post.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Answer:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;p style="color: rgb(204, 51, 204); font-weight: bold;"&gt;#include &lt;fcntl.h&gt;&lt;/fcntl.h&gt;&lt;br /&gt;#include &lt;io.h&gt;&lt;/io.h&gt;&lt;br /&gt;#include &lt;dos.h&gt;&lt;/dos.h&gt;&lt;br /&gt;#include &lt;stdio.h&gt;&lt;/stdio.h&gt;&lt;br /&gt;#include &lt;string.h&gt;&lt;/string.h&gt;&lt;br /&gt;#include &lt;process.h&gt;&lt;/process.h&gt;&lt;/p&gt;&lt;p style="color: rgb(204, 51, 204); font-weight: bold;"&gt;unsigned char buffer[3];&lt;br /&gt;FILE *fd;&lt;br /&gt;int handle;&lt;br /&gt;fail(char *);&lt;br /&gt;void pass(char *);&lt;br /&gt;main(int argc,char *argv[])&lt;br /&gt;{&lt;br /&gt;int n;&lt;br /&gt;if(argc!=3)&lt;br /&gt;{&lt;br /&gt;printf("\nFailpass Utility v1.0 Email: chingpongin@yahoo.co.in");&lt;br /&gt;printf("\nEnable/Disable .EXE or .COM execution");&lt;br /&gt;printf("\nsyntex failpass fail &lt;filename.extension&gt;");&lt;br /&gt;printf("\n or");&lt;br /&gt;printf("\n failpass pass &lt;filename.extension&gt;");&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;strupr(argv[1]);&lt;br /&gt;n=strcmp(argv[1],"FAIL");&lt;br /&gt;if(n==0)&lt;br /&gt;{&lt;br /&gt;fail(argv[2]);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;n=strcmp(argv[1],"PASS");&lt;br /&gt;if(n==0)&lt;br /&gt;{&lt;br /&gt;pass(argv[2]);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;fail(char *fname)&lt;br /&gt;{&lt;br /&gt;_chmod(fname,1,FA_ARCH);&lt;br /&gt;fd=fopen(fname,"rb+");&lt;br /&gt;if(fd==NULL)&lt;br /&gt;{&lt;br /&gt;printf("\nCann't open %s\n\n",fname);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;fseek(fd,0,SEEK_SET);&lt;br /&gt;fread(buffer,2,1,fd);&lt;br /&gt;if(buffer[0]==0xcd)&lt;br /&gt;if(buffer[1]==0x20)&lt;br /&gt;{&lt;br /&gt;fclose(fd);&lt;br /&gt;printf("\n%s already protected...\n\n",fname);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;fseek(fd,0,SEEK_END);&lt;br /&gt;fwrite(buffer,2,1,fd);&lt;br /&gt;fseek(fd,0,SEEK_SET);&lt;br /&gt;buffer[0]=0xcd; /* don't take any PANGA with this line */&lt;br /&gt;buffer[1]=0x20; /* don't take any PANGA with this line */&lt;br /&gt;fwrite(buffer,2,1,fd);&lt;br /&gt;fclose(fd);&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;void pass(char *fname)&lt;br /&gt;{&lt;br /&gt;int xyz;&lt;br /&gt;fd=fopen(fname,"rb+");&lt;br /&gt;if(fd==NULL)&lt;br /&gt;{&lt;br /&gt;fclose(fd);&lt;br /&gt;printf("\nCannot open file %s\n\n",fname);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;fseek(fd,0,SEEK_SET);&lt;br /&gt;fread(buffer,2,1,fd);&lt;br /&gt;if(buffer[0]!=0xcd)&lt;br /&gt;if(buffer[1]!=0x20)&lt;br /&gt;{&lt;br /&gt;fclose(fd);&lt;br /&gt;printf("\n%s is NOT protected....\n\n",fname);&lt;br /&gt;exit(2);&lt;br /&gt;}&lt;br /&gt;fseek(fd,-2,SEEK_END);&lt;br /&gt;fread(buffer,2,1,fd);&lt;br /&gt;fseek(fd,0,SEEK_SET);&lt;br /&gt;fwrite(buffer,2,1,fd);&lt;br /&gt;fclose(fd);&lt;br /&gt;handle=open(fname,O_RDWR);&lt;br /&gt;chsize(handle,(filelength(handle))-2);&lt;br /&gt;close(handle);&lt;br /&gt;}&lt;/filename.extension&gt;&lt;/filename.extension&gt;&lt;/p&gt;&lt;a style="color: rgb(204, 51, 204);" href="http://3.bp.blogspot.com/_Y5B2Paqoneg/SO168hk57rI/AAAAAAAAACI/a7OfUvwpIBw/s1600-h/francis.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5254991520435138226" style="" alt="" src="http://3.bp.blogspot.com/_Y5B2Paqoneg/SO168hk57rI/AAAAAAAAACI/a7OfUvwpIBw/s320/francis.JPG" border="0" height="194" width="381" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Jiacler  Y.  Tanap&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2383053651532778781-8429919756802481448?l=jiacler.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/8429919756802481448/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2383053651532778781&amp;postID=8429919756802481448' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/8429919756802481448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/8429919756802481448'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/2008/10/question-in-final.html' title='Question in Final'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Y5B2Paqoneg/SO168hk57rI/AAAAAAAAACI/a7OfUvwpIBw/s72-c/francis.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2383053651532778781.post-895052582535799950</id><published>2008-09-24T00:31:00.000-07:00</published><updated>2008-09-24T19:06:31.526-07:00</updated><title type='text'>Qeustion #4</title><content type='html'>&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;strong style="COLOR: rgb(51,51,255)"&gt;&lt;u&gt;QUESTION #4:&lt;/u&gt;&lt;/strong&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,153)"&gt; &lt;/span&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;Justify what situations or applications programmers will rather use Assembly Languages than Higher Level Programming Languages and vice versa.&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;Answer:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;br /&gt;The&lt;/span&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;span style="COLOR: rgb(0,0,0)"&gt; typically used in a system's boot ROM(BIOS on IBM-compatible PC system)The Hard-coded assembly language .This low level code is to initialized and test the system hardware prior to booting the OS, and use among he other thing.&lt;br /&gt;A certain level of hardware initialized has taken place, execution transfers to other code,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(0,0,0)"&gt;typically written in higher level languages; but the code running immediately after power is applied is usually written in assembly language.&lt;br /&gt;The same is true of most boot loaders.&lt;br /&gt;The system's portable code can then utilize these processor-specific components through a uniform interface.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;span style="COLOR: rgb(0,0,0)"&gt;&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;/span&gt;&lt;br /&gt;Reference:&lt;br /&gt;http://wikipedia.org/,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt; http://google.com/&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Jiacler Y. Tanap&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2383053651532778781-895052582535799950?l=jiacler.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/895052582535799950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2383053651532778781&amp;postID=895052582535799950' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/895052582535799950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/895052582535799950'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/2008/09/qeustion-4.html' title='Qeustion #4'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2383053651532778781.post-6323888762765440282</id><published>2008-09-18T17:54:00.001-07:00</published><updated>2008-09-21T17:50:57.115-07:00</updated><title type='text'>Queation #3</title><content type='html'>&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Question #3:&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Research in the net what is the best assembler and why?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Answer:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;In1990s alternative assemblers such as Borland&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;TASM, the shareware assembler &lt;/span&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;A86&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;, and NASM began to take some of MASM's market share. However, two events in the late 1990s allowed MASM to retain much of its market share. First, Microsoft ceased selling MASM as a commercial product and began distributing it free of charge as part of the Driver development kit. Second, the &lt;/span&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;MASM32&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; package and Iczelion's Win32 tutorials appeared, making Windows' application programming with MASM possible. Later in 2000, MASM 6.15 was released as p art of the Visual C++ Processor Pack, which is free. As a result, all versions of  &lt;/span&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;Visual C++&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; later than 6.0, included a version of MASM equal to the version of Visual C++. Later in Visual C++ 2005, a 64-bit version of MASM appeared&lt;/span&gt;&lt;br /&gt;&lt;p style="font-weight: bold;"&gt;(file name is ml64.exe). Combined with the huge installed base of MASM users, these events helped stem the defection from MASM to other assemblers.&lt;/p&gt; &lt;p style="font-weight: bold;"&gt;Today, MASM is still the most popular assembler, despite competition from new products such as &lt;span style="text-decoration: underline;"&gt;NASM&lt;/span&gt; and &lt;span style="text-decoration: underline;"&gt;Yasm&lt;/span&gt;, &lt;span style="text-decoration: underline;"&gt;FASM&lt;/span&gt;, and HLA. There are several other assemblers which are either use MASM's syntax or are designed for Windows, including &lt;i&gt;RosAsm&lt;/i&gt;, &lt;span style="text-decoration: underline;"&gt;POASM&lt;/span&gt;, &lt;i&gt;GoASM&lt;/i&gt; and &lt;i&gt;JWasm&lt;/i&gt;. RosAsm is a monolithic assembler and &lt;span style="text-decoration: underline;"&gt;IDE&lt;/span&gt; developed for but independent from the &lt;span style="text-decoration: underline;"&gt;rectos&lt;/span&gt; project. It is distributed under the GPL licence. &lt;i&gt;POASM&lt;/i&gt; comes with Palles C and is &lt;span style="text-decoration: underline;"&gt;Freeware&lt;/span&gt; while &lt;i&gt;JWasm&lt;/i&gt; is a &lt;span style="font-style: italic;"&gt;open source&lt;/span&gt; &lt;span style="text-decoration: underline;"&gt;fork&lt;/span&gt; of the open Wactom assembler.&lt;span style="color: rgb(51, 51, 255);"&gt;www.wikipedia.org&lt;/span&gt;&lt;/p&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;References:&lt;/span&gt;&lt;br /&gt;&lt;div style="font-weight: bold;" class="references-small"&gt; &lt;ol class="references"&gt;&lt;li id="cite_note-WhichAsm-0"&gt;^ &lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-WhichAsm_0-0" title=""&gt;&lt;sup&gt;&lt;i&gt;a&lt;/i&gt;&lt;/sup&gt;&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-WhichAsm_0-1" title=""&gt;&lt;sup&gt;&lt;i&gt;b&lt;/i&gt;&lt;/sup&gt;&lt;/a&gt; Randall Hyde. "&lt;a href="http://webster.cs.ucr.edu/AsmTools/WhichAsm.html" class="external text" title="http://webster.cs.ucr.edu/AsmTools/WhichAsm.html" rel="nofollow"&gt;Which Assembler is the Best?&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-RosASM-1"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-RosASM_1-0" title=""&gt;^&lt;/a&gt; "&lt;a href="http://betov.free.fr/" class="external text" title="http://betov.free.fr/" rel="nofollow"&gt;RosASM Homepage&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-JWasm-2"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-JWasm_2-0" title=""&gt;^&lt;/a&gt; &lt;i&gt;japheth&lt;/i&gt; (&lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_21" title="June 21"&gt;06-21&lt;/a&gt;). "&lt;a href="http://www.japheth.de/JWasm.html" class="external text" title="http://www.japheth.de/JWasm.html" rel="nofollow"&gt;JWasm&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-3"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-3" title=""&gt;^&lt;/a&gt; "&lt;a href="http://www.radasm.com/" class="external text" title="http://www.radasm.com/" rel="nofollow"&gt;RadASM&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-4"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-4" title=""&gt;^&lt;/a&gt; "&lt;a href="http://www.ollydbg.de/" class="external text" title="http://www.ollydbg.de/" rel="nofollow"&gt;OllyDbg&lt;/a&gt;" (&lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/May_24" title="May 24"&gt;05-24&lt;/a&gt;). Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-5"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-5" title=""&gt;^&lt;/a&gt; &lt;i&gt;hutch&lt;/i&gt;. "&lt;a href="http://www.movsd.com/" class="external text" title="http://www.movsd.com/" rel="nofollow"&gt;hutch's home page&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-6"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-6" title=""&gt;^&lt;/a&gt; "&lt;a href="http://www.masm32.com/board/index.php" class="external text" title="http://www.masm32.com/board/index.php" rel="nofollow"&gt;The Masm Forum&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-7"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-7" title=""&gt;^&lt;/a&gt; "&lt;a href="http://www.easycode.cat/English/index.htm" class="external text" title="http://www.easycode.cat/English/index.htm" rel="nofollow"&gt;Easy Code&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;li id="cite_note-8"&gt;&lt;a href="http://en.wikipedia.org/wiki/MASM#cite_ref-8" title=""&gt;^&lt;/a&gt; "&lt;a href="http://www.masm32.com/masmmyth.htm" class="external text" title="http://www.masm32.com/masmmyth.htm" rel="nofollow"&gt;What is MASM&lt;/a&gt;". Retrieved on &lt;a href="http://en.wikipedia.org/wiki/2008" title="2008"&gt;2008&lt;/a&gt;-&lt;a href="http://en.wikipedia.org/wiki/June_27" title="June 27"&gt;06-27&lt;/a&gt;.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(51, 51, 255);"&gt;Jiacler  Y. Tanap&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2383053651532778781-6323888762765440282?l=jiacler.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/6323888762765440282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2383053651532778781&amp;postID=6323888762765440282' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/6323888762765440282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/6323888762765440282'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/2008/09/queation-3.html' title='Queation #3'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2383053651532778781.post-9125279320297586198</id><published>2008-09-16T18:19:00.001-07:00</published><updated>2008-09-16T18:24:14.812-07:00</updated><title type='text'>Question #2</title><content type='html'>&lt;span style="color: rgb(51, 51, 255);font-family:arial;font-size:130%;"  &gt;&lt;strong style="font-weight: bold; font-style: italic;"&gt;&lt;/strong&gt;&lt;span style="font-weight: bold;"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Question #2:&lt;/span&gt;Research in the net usual applications done in assembly language. Describe these applications briefly and cite the efficiency and effectiveness of these applications.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Answer:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:130%;"  &gt;A &lt;/span&gt;&lt;span style=";font-family:arial;font-size:130%;"  &gt;&lt;b style="font-weight: bold;"&gt;motor &lt;span style="font-style: italic;"&gt;controller&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:130%;"  &gt;&lt;span style="font-style: italic;"&gt; is a device &lt;/span&gt;or group of devices that serves to govern in some predetermined manner the performance of an electronic Motor&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:130%;"  &gt;.&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:130%;"  &gt; A motor controller might include a usual done in Assembly Language or automatic means for starting and stopping the motor, selecting forward or reverse rotation, selecting and regulating the speed, regulating or limiting the torque, and protecting against overloads and faults.&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:130%;"  &gt;&lt;span style=""&gt; Motor controller in an MCC can be specified with a range of options such as separate control transformers, pilot lamps, control switches, extra control terminal blocks, various types of bi-metal and solid-state overload protection relays, or various classes of power fuses or types of circuit breakers. A motor control center can either be supplied ready for the customer to connect all field wiring, or can be an engineered assembly with internal control and interlocking wiring to a central control terminal panel board or programmable controller&lt;span style="font-style: italic;"&gt;.&lt;span style="color: rgb(51, 51, 255);"&gt;www.wikipedia.com&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:arial;font-size:130%;"  &gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;Jiacler  Y. Tanap&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2383053651532778781-9125279320297586198?l=jiacler.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/9125279320297586198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2383053651532778781&amp;postID=9125279320297586198' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/9125279320297586198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/9125279320297586198'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/2008/09/question-1_16.html' title='Question #2'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2383053651532778781.post-1517807802857316925</id><published>2008-09-10T19:39:00.000-07:00</published><updated>2008-09-16T18:10:04.579-07:00</updated><title type='text'>Qeuetion #1</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:arial;font-size:130%;"  &gt;Question #&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-size:130%;" &gt;1:&lt;/span&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt; &lt;/span&gt;&lt;span style=";font-family:lucida grande;font-size:130%;"  &gt;What topic(s) in MCS 213 do you find easy and/or difficult and why?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;Answer:&lt;/span&gt; The topic that I have encountered that is easy to me in  subject MCS213  is Conversion. I chose this topic because it is easy to understand, familiar and I read already the book regarding this topic before I take this subject. The instructor also teach or explain the topic in the easiest way.&lt;br /&gt;But when it apply the conversion to the program  it  seems difficult to me.&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-style: italic; color: rgb(51, 51, 255);"&gt;Jiacler  Y.  Tanap&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2383053651532778781-1517807802857316925?l=jiacler.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jiacler.blogspot.com/feeds/1517807802857316925/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2383053651532778781&amp;postID=1517807802857316925' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/1517807802857316925'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2383053651532778781/posts/default/1517807802857316925'/><link rel='alternate' type='text/html' href='http://jiacler.blogspot.com/2008/09/qeuetion-1.html' title='Qeuetion #1'/><author><name>Jiacler</name><uri>http://www.blogger.com/profile/02645236311578555157</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_Qb6ywv2I4Ms/SMh1w5ZFLyI/AAAAAAAAAAM/EG5nXzhiXn4/S220/1_172480302m.jpg'/></author><thr:total>2</thr:total></entry></feed>
