CosmosOS / IL2CPU

IL2CPU is a compiler for .NET IL code to compile to assembly language for direct booting.
BSD 3-Clause "New" or "Revised" License
279 stars 71 forks source link

Improve label name #150

Closed valentinbreiz closed 10 months ago

valentinbreiz commented 2 years ago

The problem with including the entire assembly name in the label is that its too long so an idea could be that we create a short unique id for each assembly as we encounter it and append that to each label
@quajak

Better approach for https://github.com/CosmosOS/IL2CPU/issues/122

charlesbetros commented 2 years ago

How about the Id from our debug database? There is an assemblies table there with each having an integer Id.

quajak commented 2 years ago

That could work