0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 16:18:37 +03:00

Converted StringInstructionDecoder to StringInstructionHandler for better consistency with handler pattern

This commit is contained in:
bird_egop
2025-04-13 02:18:12 +03:00
parent 9dfa559045
commit 410211fcc6
4 changed files with 89 additions and 114 deletions

View File

@ -307,6 +307,7 @@ public class InstructionHandlerFactory
{
// Add String instruction handlers
_handlers.Add(new RepMovsHandler(_codeBuffer, _decoder, _length));
_handlers.Add(new StringInstructionHandler(_codeBuffer, _decoder, _length));
}
/// <summary>