1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00

Added stack usage info

git-svn-id: svn://svn.cc65.org/cc65/trunk@1716 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-05 12:59:00 +00:00
parent 87531388f9
commit cca009fe78

View File

@ -1135,6 +1135,7 @@ static char* RegInfoDesc (unsigned U, char* Buf)
strcat (Buf, U & REG_PTR1? "1" : "_");
strcat (Buf, U & REG_PTR2? "2" : "_");
strcat (Buf, U & REG_SAVE? "V" : "_");
strcat (Buf, U & REG_SP? "S" : "_");
return Buf;
}