shithub: rgbds

Download patch

ref: ef43ae0eea5fcaab931b42baa2aa9245a6c79a08
parent: 9976a139de68fabceca8eef630e5f0b543eb024e
author: ISSOtm <eldredhabert0@gmail.com>
date: Tue Dec 3 20:55:01 EST 2019

Add a verbose print each time a file is included

--- a/src/asm/fstack.c
+++ b/src/asm/fstack.c
@@ -389,6 +389,8 @@
 	nCurrentStatus = STAT_isInclude;
 	snprintf(tzCurrentFileName, sizeof(tzCurrentFileName), "%s%s",
 		 incPathUsed, tzFileName);
+	if (CurrentOptions.verbose)
+		printf("Assembling %s\n", tzCurrentFileName);
 	pCurrentFile = f;
 	CurrentFlexHandle = yy_create_buffer(pCurrentFile);
 	yy_switch_to_buffer(CurrentFlexHandle);