Computers and Internet
Below are some of the basic and common programs and algorithms related to the field of computers and internet. Some are my past projects during school days. I hope everyone will learn something from these stuff.
1. 68000 Implementation of 32-Bit floating-Point Addition and Multiplication
68000 (68K) program that will determine the sum and the product of two 32-bit floating point numbers. Both floating point numbers are in the IEEE single-precision floating point format. The first operand is located in the memory address $100 and the second operand is located in memory address $104. the sum and the product should be placed in memory address $3000 and $3004 respectively. The program should start at address $2000. Inputs to the program should be placed in memory using assembler commands.
2. Binary Tree Traversal
Performs the 3 binary tree traversals; inorder traversal, preorder traversal and postorder traversal, using non-recursive method (stacks and queues). The program was tested for various traversal problems and it outputs a correct solution.� The program was implemented using C programming language. Complete with source code and executable file.
3. Polynomial Calculator
The program performs the basic polynomial operations-addition; subtraction and differentiation. It doesn’t include polynomial multiplication. It was implemented using singly linked-list. The program was implemented using C programming language. Complete with source code and executable file.
3. DC Motor Controller Circuit
A circuit that control the direction of rotation of DC motor. Include full project documentation and schematic diagram.