<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>SKEE 3223 - 19 Nov 2020 Class Activity by MOHD SHAHRIZAL RUSLI</title>
      <link>https://padlet.com/shahrizal1/skee3223classAct</link>
      <description>Group Work (Sec 03 &amp; 04)</description>
      <language>en-us</language>
      <pubDate>2018-09-20 03:52:19 UTC</pubDate>
      <lastBuildDate>2025-11-18 20:31:10 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Grp7</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939584890</link>
         <description><![CDATA[<div>a)<br>   Load data from memory address 0x200 and 0x201 which contains hexadecimal numbers of $65 and $23. Subtract the numbers and store the result to memory address 0x200.<br> <br>.CSEG<br><br></div><pre>	ldi r20, 0X65
	Ldi r21, 0X23

	sts $200, r20
	sts $201, r21 

	lds r18, $200
	lds r19, $201

	sub r18, r19
	sts $200, r18</pre><div><br><br>b)<br> Write an assembly program that will perform 16-bit arithmetic on the following values:</div><div>($F37F - $549D) + $4DEA</div><div> </div><div>and place the result at address $401 and $400. (Address $400 should have the lower byte). Determine the contents of address $401 and $400 after the operations are executed.<br><br></div><div><br><br><br></div><pre>LDI R20, 0X7F 
LDI R21, 0XF3
LDI R22, 0X9D 
LDI R23, 0X54
SUB R20, R22 
SBC R21, R23
LDI R22, 0XEA 
LDI R23, 0X4D 
ADD R20, R22 
ADC R21, R23
STS $401, R21
STS $400, R20</pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/796282189/05e8853525ed507417d8e17fd09bdada/WhatsApp_Image_2020_11_19_at_9_51_45_AM.jpeg" />
         <pubDate>2020-11-19 02:26:20 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939584890</guid>
      </item>
      <item>
         <title>Grp 15</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939586562</link>
         <description><![CDATA[<div>a)  LDS R16, 0x400<br>LDS R17, 0x401<br>MUL R16, R17<br>STS 0x200, R16<br><br>b) <br><br>.ORG 0x200<br>.DEF 0x200= 1<br>STS R17, 0x200<br>LDI R18,3<br>LDI R19, 4<br>MUL R17,R18<br>ADD R17, R19<br>MOV R16, R17<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:27:15 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939586562</guid>
      </item>
      <item>
         <title>G 5</title>
         <author>ai2711998</author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939586896</link>
         <description><![CDATA[<div>A:<br> .def N=r22<br><br>	sts 0x200,r19<br>	sts 0x201,r20<br><br><br>	lds r21,0x200<br>	lds r22,0x201<br><br><br>	sub r21,N<br>	sts 0x200,r21<br><br>B)   <br>	ldi r16,0x7F<br>	ldi r17,0xF3<br><br>	ldi r18,0x9D<br>	ldi r19,0x54<br><br>	ldi r20,0xEA<br>	ldi r21,0x4D<br><br>	SUB r16,r18<br>	SBC R17,R19<br>	ADD R16,R20<br>	ADC R17,R21<br><br>	STS 0X400,R16<br>	STS 0X401,R17</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:27:27 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939586896</guid>
      </item>
      <item>
         <title>GROUP 22</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939587485</link>
         <description><![CDATA[<div>        .CSEG<br>	.ORG 0x200<br><br><br>//a<br><br>	LDS R16,0x300<br>	LDS R17,0x301<br>	ADD R16,R17<br>	STS 0x305,R16</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:27:47 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939587485</guid>
      </item>
      <item>
         <title>GROUP 16</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939588964</link>
         <description><![CDATA[<div>a)<br><br>.CESG<br>.ORG  $200<br><br>LDS R16,$400<br>LDS R17,$401<br>MUL R16,R17<br>STS $200,R16<br><br>b)<br><br>LDI R20,$65 <br> LDI R21,$23<br> STS $200,R20<br> STS $201,R21<br> LDS R22,$200<br> LDS R23,$201<br> SUB R22,R23<br> STS $201,R22<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:28:37 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939588964</guid>
      </item>
      <item>
         <title>G17</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939590024</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/863986793/c11761f9bef4aebe26390cbfebbe7953/class_acitivity_5_G17.pdf" />
         <pubDate>2020-11-19 02:29:12 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939590024</guid>
      </item>
      <item>
         <title>G13</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939591028</link>
         <description><![CDATA[<div>a) ldi r20,0b00110100  <br>    cbr r20,4<br>    cbr r20,6<br>    sts 0x0500,r20<br><br>b).ORG0x200<br>    .def x=r17<br>    .de y=r16<br>    mul r17,2<br>    add r17,5<br>    st r16,r17<br><br></div>]]></description>
         <pubDate>2020-11-19 02:29:47 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939591028</guid>
      </item>
      <item>
         <title>Group 1</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939604426</link>
         <description><![CDATA[<div>	LDI R16, 0x1C<br>	OUT DDRA, R16<br>	OUT PORTA, R16<br><br> 	LDI R28, 0x00<br>	LDI R29, 0x02<br>main:	LD R17, Y<br>	SWAP R17<br>	ST Y+, R17<br>	RJMP main<br>	.DSEG<br>	.ORG $200</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:37:21 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939604426</guid>
      </item>
      <item>
         <title>G11</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939607046</link>
         <description><![CDATA[<div>A. .cseg<br><br>	ldi r10, 0b110100<br>	cbr r10 , 4<br>	cbr r10 , 6<br>	sts 0x0500 , r10<br><br>B. 		.org $200<br>		.def b = r17<br>		.def a = r16<br><br> /*main*/<br><br>	andi b , 2<br>	ldi r18, 0x5<br>	add b , r18<br>	mov a, b</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:38:59 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939607046</guid>
      </item>
      <item>
         <title>group 6</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939607295</link>
         <description><![CDATA[<div>A)<br>        .ORG $100<br>	STS $200, R16<br>	STS $201, R17<br>	<br>	LDS R16, $200<br>	LDS R17, $201<br><br>	SUB R16, R17<br>	STS $200, R16<br>B)        <br>        .ORG $100<br>	LDI R16, $7F<br>	LDI R17, $F3<br>	LDI R18, $9D<br>	LDI R19, $54<br><br>	SUB R16,R18<br>	SBC R17,R19<br><br>	LDI R18, $EA<br>	LDI R19, $4D<br><br>	ADD R16, R18<br>	ADC R17, R19<br>	STS $400, R16<br>	STS $401, R17</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:39:06 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939607295</guid>
      </item>
      <item>
         <title>Group 14..</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939609694</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/857726364/1dda11a339009bb69f8a399e4faf8f88/Group14__.JPG" />
         <pubDate>2020-11-19 02:40:31 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939609694</guid>
      </item>
      <item>
         <title>Group 4</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939619112</link>
         <description><![CDATA[<div>Part A<br>SBI DDRA, 3<br> SBI DDRA, 4<br> SBI DDRA, 5<br> LDI R16,0xFF <br> OUT DDRC,R16<br><br>Part B<br> .cseg<br> LDI R28,low(TEMP1)<br> LDI R29,high(TEMP1)<br> LDI R16,0x45<br> SWAP R16<br> ST Y+,R16<br> LDI R16,0xA4<br> SWAP R16<br> ST Y+,R16<br> LDI R16,0xF3<br> SWAP R16<br> ST Y+,R16<br> LDI R16,0x78<br> SWAP R16<br> ST Y+,R16<br><br>.DSEG<br>.org 0x200<br>TEMP1: .BYTE 1<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:45:49 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939619112</guid>
      </item>
      <item>
         <title>G 8</title>
         <author>abdobahaa96000</author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939619945</link>
         <description><![CDATA[<div><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/416956938/44b2344453f981b2c4f4da7090de6423/ab.JPG" />
         <pubDate>2020-11-19 02:46:17 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939619945</guid>
      </item>
      <item>
         <title>GROUP 12</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939622735</link>
         <description><![CDATA[<div>.CSEG<br>.ORG 0x200<br>.EQU SIMPAN = 0X0500<br><br>//a<br>LDI R21,$34<br>CBR R21, 4<br>CBR R21, 6<br>STS SIMPAN, R21<br><br>//b<br>LDI R23, 2<br>MUL R17, R23<br>LDI R24, 5<br>ADD R17,R24<br>MOV R16,R17</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:47:55 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939622735</guid>
      </item>
      <item>
         <title>Group 2</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939630250</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/476650451/9a9825c977b2276505117d7a2bcecca6/WhatsApp_Image_2020_11_19_at_10_50_58.jpeg" />
         <pubDate>2020-11-19 02:52:07 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939630250</guid>
      </item>
      <item>
         <title>GROUP 9</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939635745</link>
         <description><![CDATA[<div>a)<br>LDI R16, $65<br>LDI R17, $23<br>STS $200, R16<br>STS $201, R17<br>LDS R16, $200<br>LDS R17, $201<br>SUB R16, R17<br>STS $200, R16<br><br>b) <br>LDI R26, $7F<br>LDI R27, $F3<br>LDI R28, $9D<br>LDI R29, $54<br>LDI R30, $EA<br>LDI R31, $4D<br>SUB R26, R28<br>SBC R27, R29<br>ADD R26, R30<br>ADC R27, R31<br>STS $400, R26<br>STS $401, R27<br><br><br><br></div>]]></description>
         <pubDate>2020-11-19 02:55:17 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939635745</guid>
      </item>
      <item>
         <title>Group 8 Task 2</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939638337</link>
         <description><![CDATA[<div>Nik Umar bin Nik Mohamed Nizan<br>Ray</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/864015750/df4f2f50d44b26f0296100fd19549863/242E4935_4CF9_4575_8162_21F67AA9A247.png" />
         <pubDate>2020-11-19 02:56:47 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939638337</guid>
      </item>
      <item>
         <title>GROUP 18</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939639304</link>
         <description><![CDATA[<div>b)<br>.org $200<br>LDI		R20,$3<br>LDI		R21,$5<br>LDI		R22,$7<br>LDI		R23,$2<br>LDI		R17,1 ;R17 IS X<br>MUL		R17,R17 ;x^2<br>MUL		R17,R17 ;x^3<br>MUL		R17,R20   ;3x^3<br>MOV		R15,R17<br>CLR		R17<br>LDI		R17,1 ;R17 IS X<br>MUL		R17,R17 ;x^2<br>MUL		R17,R21   ;5x^2<br>MOV		R14,R17<br>CLR		R17<br>LDI		R17,1 ;R17 IS X<br>MUL		R17,R22   ;7x<br>ADD		R17,R23  ;7X+2<br>ADD		R17,R14<br>ADD		R17,R15<br>MOV		R16,R17<br><br><br>a)<br>CLR		R16<br>CLR		R17<br>LDI		R16,$9F<br>LDI		R17,$F9<br><br>STS		0X300,R16<br>STS		0X301,R17<br><br>ADD		R16,R17<br>STS		0X305,R16</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 02:57:20 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939639304</guid>
      </item>
      <item>
         <title>GROUP 3</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939639478</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/405104073/e17e207b6bf051495eeb651c252c3d9e/Group_3.PNG" />
         <pubDate>2020-11-19 02:57:26 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939639478</guid>
      </item>
      <item>
         <title>GROUP 10 </title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939645842</link>
         <description><![CDATA[<div>a. <br>.CSEG<br>.ORG 0x100<br>.EQU store = 0x0500<br>LDI R21,$34<br>CBR R21,4<br>CBR R21,6<br>STS store, R21<br><br>b.<br>.CSEG<br>.ORG $200<br>.def x =R17<br>.def y =R16<br>LDI R17, X<br>MUL R17, 2 <br>ADD R17, 5 <br>MOV R16, R17</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-19 03:00:53 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939645842</guid>
      </item>
      <item>
         <title>Group19</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939646285</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/796283898/6488f08f96d48a573137537e8ea7eec9/Screenshot_2020_11_19_110055.png" />
         <pubDate>2020-11-19 03:01:11 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939646285</guid>
      </item>
      <item>
         <title>G20 </title>
         <author>mahendraehza99</author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/939651319</link>
         <description><![CDATA[<div>C &amp; D</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/501965622/8208d119e7809d76ff89837f3abd4ee6/WhatsApp_Image_2020_11_19_at_11_04_37_AM.jpeg" />
         <pubDate>2020-11-19 03:04:17 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/939651319</guid>
      </item>
      <item>
         <title>GROUP 21</title>
         <author></author>
         <link>https://padlet.com/shahrizal1/skee3223classAct/wish/941255294</link>
         <description><![CDATA[<div>C) <br>LDI R16,$9F<br>LDS R16,0x300<br>LDI R17,$F9<br>LDS R17,0X301<br><br>ADD R16,R17<br>STS 0x305,R16<br><br>D) </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/865158992/32fa866dca018e83145c0ebfdbaf0e0b/bb.PNG" />
         <pubDate>2020-11-19 13:49:28 UTC</pubDate>
         <guid>https://padlet.com/shahrizal1/skee3223classAct/wish/941255294</guid>
      </item>
   </channel>
</rss>
