#lang scheme/base ;; Creates a Scheme namespace object containing the PIC18 compiler and ;; basic infrastructure (a 'project'). (require scheme/runtime-path "../tools.ss" "namespace.ss") (provide (all-from-out "namespace.ss") (all-defined-out)) (define-runtime-path pic18 "../pic18.ss") (define (make-pic18) (make-prj-namespace (list pic18))) (make-prj make-pic18) (init-prj)