add new jtag cmd : read status reg

This commit is contained in:
2025-04-24 14:16:38 +08:00
parent 4e752d4c9e
commit c76dabfdb7
5 changed files with 172 additions and 26 deletions

View File

@@ -175,4 +175,15 @@ namespace Common
}
public class String
{
public static string Reverse(string s)
{
char[] charArray = s.ToCharArray();
Array.Reverse(charArray);
return new string(charArray);
}
}
}