Last active
December 1, 2015 15:51
-
-
Save ivanpepelko/f69a3bda83a5989c9b82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; =============================================== | |
; Postavljnje MCU i kofiguracijska rijec | |
; =============================================== | |
PROCESSOR 16F84A | |
#include "p16f84a.inc" ; ova datoteka sadrzi sva imena registara specijalnih namjena i njihove adrese od PIC16F84A mikrokontrolera | |
ERRORLEVEL -224 | |
__CONFIG _CP_OFF & _XT_OSC & _PWRTE_ON & _WDT_OFF ; procesorske direktive | |
org 0x0 ; pocetna adresa od koje mikrokontroler krece nakon dovodenja napajanja | |
; ===== | |
; ... = | |
; ===== | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment