瀏覽代碼

Add isLabel function

Bee Hudson 4 月之前
父節點
當前提交
71151ded11
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      yaict.pl

+ 8 - 0
yaict.pl

@@ -135,6 +135,14 @@ sub isImmediate
     return !(shift =~ /^0d/);
 }
 
+# Check if a parameter
+sub isLabel
+{
+    $_[0] =~ /(\w+?)(?:\s*+\s*\d*)?/;
+    print "Testing: $_[0]\n";
+    return !!$labels{$1};
+}
+
 # Get the address a value represents
 sub getAddress
 {