
programmingwith8085.blogspot.com
Programming the 8085Programming the 8085 microproccessor.
http://programmingwith8085.blogspot.com/
Programming the 8085 microproccessor.
http://programmingwith8085.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.3 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
82
SITE IP
173.194.46.108
LOAD TIME
0.297 sec
SCORE
6.2
Programming the 8085 | programmingwith8085.blogspot.com Reviews
https://programmingwith8085.blogspot.com
Programming the 8085 microproccessor.
Programming the 8085
http://programmingwith8085.blogspot.com/2010/10/triangular-wave-using-dac.html
Programming the 8085: Triangular wave using DAC. Thursday, October 21, 2010. Triangular wave using DAC. 4100 2E 00 START: MVI L,00 4102 7D L1: MOV A,L 4103 D3 C8 OUT 0C8H 4105 2C INR L 4106 C2 02 41 JNZ L1 4109 2E FF MVI L,0FFH 410B 7D L2: MOV A,L 410C D3 C8 OUT 0C8H 410E 2D DCR L 410F C2 0B 41 JNZ L2 4112 C3 00 41 JMP START 4115 76 HLT. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. Scroll a word using 8279. Square of a number.
Programming the 8085
http://programmingwith8085.blogspot.com/2010/08/binary-to-bcd.html
Programming the 8085: Binary to BCD. Friday, August 13, 2010. 20 Convert binary to bcd. Before execution 5000- 48h After execution 5001- 00 5002- 07 5003- 02. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. Scroll a word using 8279. Staircase wave using DAC. Triangular wave using DAC. Square wave using DAC. Rotate Stepper Motor in both direction. Rotate Stepper Motor in clockwise direction. Square wave using 8255.
Programming the 8085
http://programmingwith8085.blogspot.com/2010/08/bcd-to-binary.html
Programming the 8085: BCD to Binary. Friday, August 13, 2010. 21 Convert a bcd number to binary. Before Execution 5000- 72 After Execution 5001- 48. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. Scroll a word using 8279. Staircase wave using DAC. Triangular wave using DAC. Square wave using DAC. Rotate Stepper Motor in both direction. Rotate Stepper Motor in clockwise direction. Square wave with 90 degree phase shift using 8255.
Programming the 8085
http://programmingwith8085.blogspot.com/2010/10/scroll-word-using-8279.html
Programming the 8085: Scroll a word using 8279. Thursday, October 21, 2010. Scroll a word using 8279. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. Scroll a word using 8279. Staircase wave using DAC. Triangular wave using DAC. Square wave using DAC. Rotate Stepper Motor in both direction. Rotate Stepper Motor in clockwise direction. Square wave with 90 degree phase shift using 8255. Square wave using 8255. Square of a number.
Programming the 8085
http://programmingwith8085.blogspot.com/2010/10/staircase-wave-using-dac.html
Programming the 8085: Staircase wave using DAC. Thursday, October 21, 2010. Staircase wave using DAC. 4100 3E 00 LOOP1: MVI A,00H 4102 D3 C8 LOOP2: OUT 0C8H 4104 CD 0F 41 CALL DELAY 4107 C6 33 ADI 33H 4109 D2 02 41 JNC LOOP2 410C C3 00 41 JMP LOOP1 410F 06 FF DELAY: MVI B,0FFH 4111 05 BACK: DCR B 4112 C2 11 41 JNZ BACK 4115 C9 RET. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. Scroll a word using 8279. Staircase wave using DAC.
TOTAL PAGES IN THIS WEBSITE
19
programmingwith8086.blogspot.com
Programming the 8086
http://programmingwith8086.blogspot.com/2011/02/fibonacci-series.html
Programming the 8086: Fibonacci Series. Wednesday, February 16, 2011. Enter the number: $'. Reading 1st multidigit number. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). Sort the characters in a string. Sum of row elements of a matrix. Insert a string in middle of another string. Cursor operations-Change size and Move. Reverse each words in a sentance. Factorial of a number. No of vowels in a string. Insert a string in another string. GCD of two numbers. No of words in a sentance. Display a c...
Graphics programming using c
http://graphics-using-c.blogspot.com/2010/08/filling-recursive-method.html
Graphics programming using c. Tuesday, August 3, 2010. Filling - recursive and non-recursive method. 3 Write a program to implement following seed filling algorithms on polygon, circle and an ellipse. A) floodfill b) boundary fill. Recursive and Non Recursive method. NULL) { pop(); x=p- x; y=p- y; if( getpixel(x 1,y)! Bdry)& (getpixel(x 1,y)! New) { putpixel(x 1,y,new); push(x 1,y); } if( getpixel(x-1,y)! New) { putpixel(x-1,y,new); push(x-1,y); } if( getpixel(x,y 1)! Bdry)& (getpixel(x,y 1)! Circumcircl...
Graphics programming using c
http://graphics-using-c.blogspot.com/2010/10/draw-following-figure1.html
Graphics programming using c. Wednesday, October 13, 2010. Draw the following figure(1). Struct point { int x,y; }pol[ 3. Int n,r; float trans[ 3. Void midpoint(int xc,int yc,int r) { int x= 0. Int y=r; int p= 1. R; plot(xc,yc,x,y); while. Plot(xc,yc,x,y); } } void plot(int xc,int yc,int x,int y) { putpixel(xc x,yc y, 10. Putpixel(xc-x,yc y, 10. Putpixel(xc x,yc-y, 10. Putpixel(xc-x,yc-y, 10. Putpixel(xc y,yc x, 10. Putpixel(xc-y,yc x, 10. Putpixel(xc y,yc-x, 10. Putpixel(xc-y,yc-x, 10. I ) { for. New,bd...
Graphics programming using c
http://graphics-using-c.blogspot.com/2010/08/line-clipping.html
Graphics programming using c. Sunday, August 15, 2010. Xa) m=(float)(yb-ya)/(float)(xb-xa); while(1) { if(rcode1= 0& rcode2= 0) return 1; else if( rcode1&rcode2)! 0) return 0; else { int outcode=(rcode1= 0)? Rcode2:rcode1; if(outcode&top) { if(m! 0) x=xa (float)(1/m)*(float)(wymax-ya); else x=xa; y=wymax; } else if(outcode&bottom) { if(m! Kbhit() ; closegraph(); initgraph(&gd,&gm,NULL); printf(After Clipping ); rectangle(wxmin,wymin,wxmax,wymax); if(clipline() line(xa,ya,xb,yb); while(!
programmingwith8086.blogspot.com
Programming the 8086
http://programmingwith8086.blogspot.com/2011/05/sum-of-row-elements-of-matrix.html
Programming the 8086: Sum of row elements of a matrix. Monday, May 2, 2011. Sum of row elements of a matrix. Read a multidigit number. Enter the no of rows: $'. Enter the no of column: $'. Enter the element of matrix : $'. Sum of elements of row $'. Read no of rows. Read no of column. Calculating total no of elements. Read 1st matrix elements. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). Sort the characters in a string. Sum of row elements of a matrix. Cursor operations-Change size and Move.
datastructure-using-java.blogspot.com
Datastructure using java: Write a java program to evaluate a postfix expression using stack
http://datastructure-using-java.blogspot.com/2010/02/write-java-program-to-evaluate-postfix.html
Cusat CS 4th semester lab cycle 09-10. Write a java program to evaluate a postfix expression using stack. 6 Write a java program to evaluate a postfix expression using stack. Top,m; public. Max) { m=max; a= new. M]; top=- 1. Key) { a[ top]=key; } public. A[top- ]); } } class. I n;i ) { char. R=x y; break. R); } } r=a. pop. R); } } class. Enter the postfix expresion. Input) ; } } public. Posted by Arun Ramesh. On January 3, 2012 at 6:21 AM. Thanks for the codings. On January 5, 2012 at 10:08 PM. Polynomia...
datastructure-using-java.blogspot.com
Datastructure using java: Write a java program to reverse a string using stack
http://datastructure-using-java.blogspot.com/2010/02/write-java-program-to-reverse-string.html
Cusat CS 4th semester lab cycle 09-10. Write a java program to reverse a string using stack. 5 Write a java program to reverse a string using stack. Top,m; public. Max) { m=max; a= new. M]; top=- 1. Key) { a[ top]=key; } public. A[top- ]); } public. In) { input=in; } public. I n;i ) a. push. I) ; while. Output=output a. pop. Output; } } class. Posted by Arun Ramesh. On February 29, 2016 at 3:22 PM. What is Top in this Program. I Know its a Varialbe but what Does it do. LEX, YACC and parsers. Write a java...
datastructure-using-java.blogspot.com
Datastructure using java: Selection Sort , Quick Sort , Merge Sort , Heap Sort
http://datastructure-using-java.blogspot.com/2010/03/selection-sort-quick-sort-merge-sort.html
Cusat CS 4th semester lab cycle 09-10. Selection Sort , Quick Sort , Merge Sort , Heap Sort. 14Write a program to implement. Max) { a= new. Max]; n=max; } public. I n;i ) { System. I n;i ) System. Out,in,min; for. Out n;out ) { min=out; for. In n;in ) if. A[in] a[min]) min=in; swap. Out,min); } } public. Left,right,pivot); recQuickSort. Right); } } private. A[ leftPtr] pivot); while. A[- rightPtr] pivot); if. LeftPtr,rightPtr); } swap. LeftPtr,right); return. LeftPtr; } private. WorkSpace,lBound,mid 1.
Graphics programming using c
http://graphics-using-c.blogspot.com/2010/10/rotate-triangle-along-circumference-of.html
Graphics programming using c. Tuesday, October 12, 2010. Rotate a triangle along the circumference of a circle, also rotate the triangle with reference to its centroid. Rotate a triangle along the circumference of a circle, also rotate the triangle with reference to its centroid. Use midpoint algorithm for circle drawing. Kbhit() ; closegraph(); return 0; }. Posted by Arun Ramesh. Subscribe to: Post Comments (Atom). There was an error in this gadget. Amazon Contextual Product Ads. View my complete profile.
programmingwith8086.blogspot.com
Programming the 8086
http://programmingwith8086.blogspot.com/2011/02/cursor-operations-change-size-and-move.html
Programming the 8086: Cursor operations-Change size and Move. Saturday, February 19, 2011. Cursor operations-Change size and Move. Press 1 to increase and 0 to decrease. The size of cursor (only 4 sizes, initially minimum) $'. Press 8,2,4 and 6 to move the cursor. Up,down,left and right respectively $'. Press ENTER to finish $'. Get cursor position and size. Posted by Arun Ramesh. March 16, 2016 at 3:52 AM. Wont the value of AX be reset to 0 if XOR is performed? Shouldnt you push and pop it? Xor ax, ax.
TOTAL LINKS TO THIS WEBSITE
82
programmingwiki.com - This website is for sale! - Programming Resources and Information.
Startseite – ProgrammingWiki
Willkommen beim interaktiven Programmier-Wiki. Hier können Sie mit verschiedenen Programmiersprachen Grundlagen des Programmierens erlernen ohne zusätzliche Software installieren zu müssen. Was ist ein Wiki? Was ist speziell an diesem Wiki? Wie erstelle ich interaktive Wikiseiten? FAQ Fragen und Antworten. Für Sprachen mit * gekennzeichnet wird ein Java-fähiger Browser benötigt. Wichtig: Sicherheitseinstellungen für Java anpassen. Internet Explorer (langsam bei graphischer Ausgabe). Wenn Sie selbst Unter...
Programming Win32
Welcome to Programming Win32. How would you like to use a powerful, all purpose language whose syntax is clear and easy to understand? How about if you did not have to update the code every few years because a newer 'better' version comes out? But wait, that's not all! It also creates tiny, superfast executables that have no dependencies! Sounds almost too good to be true doesn't it? Well the good news is that not only does such a language exist but it's an old friend. Yes, it's C!
ProgrammingWire.com
Enter your zip code:. See Rates and Lenders. The information contained in this website is for general information purposes only. Advertisers and participating companies are responsible for maintaining the accuracy of their own data. CALL 844.944.CHEAP.
programmingwisdom.com at Directnic
programmingwith8085.blogspot.com
Programming the 8085
Thursday, October 21, 2010. Scroll a word using 8279. Posted by Arun Ramesh. Staircase wave using DAC. 4100 3E 00 LOOP1: MVI A,00H 4102 D3 C8 LOOP2: OUT 0C8H 4104 CD 0F 41 CALL DELAY 4107 C6 33 ADI 33H 4109 D2 02 41 JNC LOOP2 410C C3 00 41 JMP LOOP1 410F 06 FF DELAY: MVI B,0FFH 4111 05 BACK: DCR B 4112 C2 11 41 JNZ BACK 4115 C9 RET. Posted by Arun Ramesh. Triangular wave using DAC. Posted by Arun Ramesh. Square wave using DAC. Posted by Arun Ramesh. Monday, September 27, 2010. Posted by Arun Ramesh.
programmingwith8086.blogspot.com
Programming the 8086
Tuesday, May 3, 2011. Enter a decimal number $'. Posted by Arun Ramesh. Sort the characters in a string. Enter the string $'. Posted by Arun Ramesh. Enter a number: $'. Enter the size of array: $'. Read a multidigit number. Posted by Arun Ramesh. Monday, May 2, 2011. Sum of row elements of a matrix. Read a multidigit number. Enter the no of rows: $'. Enter the no of column: $'. Enter the element of matrix : $'. Sum of elements of row $'. Read no of rows. Read no of column. Calculating total no of elements.
programmingwithcocoabooks.blogspot.com
Cheap Price & Reviews:Programming with Cocoa Books
Cocoa Touch for iPhone OS 3 (Developer Reference). Posted by Shira Joliet. On Saturday, May 8, 2010. Great Price "Cocoa Touch for iPhone OS 3 (Developer Reference)" for $22.16. Cocoa Touch for iPhone OS 3 (Developer Reference) Features. Notes: Brand New from Publisher. No Remainder Mark. Cocoa Touch for iPhone OS 3 (Developer Reference) Overviews. Walk through Xcode, Interface Builder, and other key tools. Build simple or complex GUIs with navigation and custom views. Whether you're a new iPhone develope...
programmingwithdev.blogspot.com
Programming with C\C++ and java
Programming with C C and java. Here you can find useful programs code, their algorithms and concepts.Codes which are given in this site if you writes these codes without any mistake, definitely you will get the right output without any error. OOPs Basics With Java. Wednesday, 5 March 2014. Stack implementation using arrays. Include stdio.h #include stdlib.h void. Top = -1,s max; int. Choice,item; printf( " nEnter the Size of the stack : ". S max); int. S[s max]; while. 2 : pop(S); / displayStack(S);.
Home Page -Programming With Francesco
Learn from the best. Work with an industry-leading expert. Learn the advanced programming and management skills that have helped the best developers in the business become even better. Work less, achieve more. Discover how to grow your software and strengthen your project while drastically reducing costs. Improve your workflow and achieve better results with less effort. A few reasons you'll enjoy programming with Francesco. Software Engineer, Oracle. Through one-on-one lessons with Francesco you will le...
Programming With Greybeards | Tips, techniques, and examples from experienced software developers
Tips, techniques, and examples from experienced software developers. Rant on using Java Frameworks. September 25, 2015. Another thing that Spring 4 makes nice is the ease in which you can get values from properties files into the system. It comes down to a statement such as this:. Value("${foo.bar.gar}") private String fooBarGar;. For example to autowire a service in you use:. Autowired private ManagerService manager;. Coding standards validated by Sonar is another rant. More on that another time. Of the...