Can I add the include bas files to main bas to be ihex.
Example :
Above pieces code I did compiled to be iHex format, then this iHex I add as an include files as Include.iHex or something like #include <built_in.h>
Thanks,
Mini.
Example :
Code:
Define CONF_WORD = 0x3f41
Define CLOCK_FREQUENCY = 4
'#Processor PIC16F628A
AllDigital
TRISA = %11111011
TRISB = %00000000
PORTB.7 = 1 'LED on PORTB is On
'Declaration
Dim ledIndicator As Byte
'LCD 2x16
Define LCD_LINES = 2
Define LCD_CHARS = 16
Define LCD_BITS = 4
Define LCD_DREG = PORTB
Define LCD_DBIT = 0
Define LCD_RSREG = PORTA
Define LCD_RSBIT = 2
Define LCD_EREG = PORTA
Define LCD_EBIT = 3
Lcdinit 0
'Show First Time On LCD
Lcdcmdout LcdLine1Pos(1)
Lcdout "PCB Etching" 'First Line
Lcdcmdout LcdLine2Pos(1)
Lcdout "Mini Osh" 'Second Line
Above pieces code I did compiled to be iHex format, then this iHex I add as an include files as Include.iHex or something like #include <built_in.h>
Thanks,
Mini.