]> jspc29.x-matter.uni-frankfurt.de Git - jtag_mvd.git/commitdiff
writeram via libtrbnet for debugging
authorJan Michel <j.michel@gsi.de>
Fri, 19 Jul 2013 15:20:15 +0000 (17:20 +0200)
committerJan Michel <j.michel@gsi.de>
Fri, 19 Jul 2013 15:20:15 +0000 (17:20 +0200)
soft/toolbox/jtag_atomic/ui_writeram.pl

index dfde2dc9f959282a98e0fd5a0cef872bd948ce8d..180bd915eea4cf1826563e0ef8a8dde096d5933d 100755 (executable)
@@ -67,7 +67,17 @@ my $string = "  \t  Hello world!   ";
 #print trim($string)."\n";
 #print ltrim($string)."\n";
 #print rtrim($string)."\n";
-
+sub any2dec { # converts numeric expressions 0x, 0b or decimal to decimal
+  
+  my $argument = $_[0];
+  #print "any2dec input argument $argument\n";  
+
+  if ( $argument =~ m/0[bxBX]/) { 
+    return oct $argument;
+  } else {
+    return $argument;
+  }
+}
 # Perl trim function to remove whitespace from the start and end of the string
 sub trim($)
 {