Booting on a real MicroVAX 3100/40 via netboot and on simh emulating a micrvax 3900. Doesn't fully work, lots of stuff is stubbed out, but it starts to run and hits unimplemented bits and stops.
12 lines
252 B
Makefile
12 lines
252 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
ASM_STRING_OPS := #bcopy bzero memcpy memmove memset
|
|
|
|
MODULE_SRCS += \
|
|
#$(LOCAL_DIR)/memcpy.S \
|
|
#$(LOCAL_DIR)/memset.S
|
|
|
|
# filter out the C implementation
|
|
C_STRING_OPS := $(filter-out $(ASM_STRING_OPS),$(C_STRING_OPS))
|
|
|