19 lines
433 B
Batchfile
19 lines
433 B
Batchfile
|
@echo off
|
||
|
rem The name of the loader assembly file (without extension, must be .asm):
|
||
|
set loader_name=loader
|
||
|
|
||
|
rem NASM and DJGPP executable paths:
|
||
|
set nasm_path=C:\nasm
|
||
|
set djgpp_path=C:\DJGPP\bin
|
||
|
set objpath=../../objects
|
||
|
set incpath=../../include
|
||
|
|
||
|
@echo on
|
||
|
%djgpp_path%\gcc.exe -Wall -O -fstrength-reduce -fomit-frame-pointer -nostdinc -fno-builtin -I%incpath% -c -o %objpath%/cmos.o cmos.c
|
||
|
|
||
|
@echo off
|
||
|
@echo .
|
||
|
@echo Done!
|
||
|
|
||
|
@pause
|