dasm-assembler / dasm

Macro assembler with support for several 8-bit microprocessors

Home Page:https://dasm-assembler.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't load INCLUDE'ed libraries

Tux9001 opened this issue · comments

commented

Whenever I try to compile a program that involves built-in libraries, it doesn't work. Specifically, when I try to do the following, it complains that it can't open vcs.h and macro.h

	processor 6502
	include "vcs.h"
	include "macro.h"

It's looking for those files in the base directory (the one in which your source file is located).
Are they there?

commented

It's looking for those files in the base directory (the one in which your source file is located).
Are they there?

No, but other sources say it should work fine even if they aren't.

dasm doesn't search your computer to find these files.
They have to be in a location/path that is known to the assembler.

commented

Strange, everyone else says it works even if it isn't in the same directory. Thank you anyway.