I write about

    Led blinking program with ATmega128, AVR Studio 6 and ISIS Proteus

    My 1st blog attempt So I have been learning/refreshing Embedded C, my initial project was just a simple program. Blinking an Led I have attached the source code, and schematic Source Code:  #include <avr/io.h> #include <util/delay.h> void BlnkLED() // function declaration { DDRA = 0xFF; // set up pin direction PORTA ^= 0x01 ; // toggle the pins _delay_ms(500); //delay } int main (void) { while(1){ BlnkLED(); } } Schematic:... [Read More]

    Badass Windows Virus created using Notepad

    Here is a Batch File virus which can: Link: How to create a batch file. 1.Copy itself into startup2.Copy itself over one thousand times into random spots in your computer.3.Hide its self and all other created files4.Task kill MSN, Norton, Windows Explorer, Limewire.5.Swap the left mouse button with the right one6.Opens alert boxes7.Changes the time to 12:00 and shuts down the computercopy this code into notepad and save as Greatgame.bat(while saving... [Read More]
    Tags: Windows