mirror of
				https://github.com/MoleskiCoder/EightBitNet.git
				synced 2025-11-03 16:16:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace M6502
 | 
						|
{
 | 
						|
    public sealed class ProfileLineEventArgs(ushort address, string source, long cycles, long count, Dictionary<int, long> cycleDistributions) : CycleCountedEventArgs(cycles, count)
 | 
						|
    {
 | 
						|
        public ushort Address { get; } = address;
 | 
						|
 | 
						|
        public string Source { get; } = source;
 | 
						|
 | 
						|
        public Dictionary<int, long> CycleDistributions { get; } = cycleDistributions;
 | 
						|
    }
 | 
						|
} |