Bueno ya probe....

#include <18f4550.h>
#fuses XT,WDT,NOPROTECT,NOCPD,NOLVP,VREGEN,NOPBADEN,INTRC_IO,MCLR,BROWNOUT,BORV20
#use fast_io (A)
#use fast_io (B)
#use fast_io (C)
#use fast_io (D)
#use delay(clock=4000000)
#byte RCON=0xFD0
#bit SBOREN=RCON.6
#bit IPEN=RCON.7
void main(void)
{
IPEN=0;
SBOREN0=1;
SBOREN1=0; enable_interrupts(int_ext); // Activa máscara INTE
enable_interrupts(int_ext1);
ext_int_edge (H_TO_L); // Flag INTF si flanco de bajada.
ext_int_edge(1,H_TO_L);
enable_interrupts(global); //Habilita máscara global de int.
set_tris_b (0xFF); // Configura puerto b como entrada
set_tris_d (0x00); // Configura puerto d como salida
set_tris_a (0xF0); // Configura los pines RA6 - RA4 como entradas y RA3 - RA0 como salidas
set_tris_c (0x00); // Configura puerto c como salida
output_c (0x00); // Limpio el puerto C
output_b (0x00); // Limpio el puerto B
output_d (0x00); // Limpio el puerto d
output_a (0x00); // Limpio el puerto A
2 Errores:
Undefined Indentifier SBOREN1
Undefined Indentifier SBOREN0....... siempre me dan estos errores!!!!
No se si es algo que no estoy viendo!!!!
Atte: Enigma... La llanerita de Guayana
