The p18f45K20 Demo Board!

When I ordered the PIC KIT 3, they included a neat demo board to get started.

The pdf guide for the demo board:

http://ww1.microchip.com/downloads/en/DeviceDoc/41370C.pdf

The source code for the lessons:

https://www.microchip.com/DevelopmentTools/ProductDetails/DM164130-4#utm_source=MicroSolutions&utm_medium=Link&utm_term=FY17Q1&utm_content=DevTools&utm_campaign=Article

Check out youtube video below for how to set up hello world led project in MPLABX.

YouTube Video Showing Setting up assembly project in MPLABX
include <p18F45K20.inc>
CONFIG FOSC = INTIO67
CONFIG WDTEN = OFF, LVP = OFF
org 0
Start:
CLRF PORTD
MOVLW b'00000000'
MOVWF TRISD
BSF LATD,7
BSF LATD,5
BSF LATD,3
BSF LATD,0
GOTO $
END
view raw LED.AS hosted with ❤ by GitHub