當前位置: 首頁>>代碼示例>>C#>>正文


C# Forth.PopInt64方法代碼示例

本文整理匯總了C#中SimpleForth.Forth.PopInt64方法的典型用法代碼示例。如果您正苦於以下問題:C# Forth.PopInt64方法的具體用法?C# Forth.PopInt64怎麽用?C# Forth.PopInt64使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleForth.Forth的用法示例。


在下文中一共展示了Forth.PopInt64方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Int16Bang

 public static void Int16Bang(Forth f)
 {
     long offset = f.PopInt64();
     long value = f.PopInt64();
     f.byteMemory.WriteInt16(checked((int)offset), unchecked((short)value));
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例2: At

 public static void At(Forth f)
 {
     long index = f.PopInt64();
     f.dStack.Push(f.memory[(int)index]);
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:5,代碼來源:Forth.cs

示例3: Off

 public static void Off(Forth f)
 {
     long index = f.PopInt64();
     f.memory[(int)index] = 0L;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:5,代碼來源:Forth.cs

示例4: Modulus

 public static void Modulus(Forth f)
 {
     long b = f.PopInt64();
     long a = f.PopInt64();
     f.PushInt64(unchecked(a % b));
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例5: IsNotGreaterThan

 public static void IsNotGreaterThan(Forth f)
 {
     long b = f.PopInt64();
     long a = f.PopInt64();
     f.PushBool(a <= b);
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例6: Add

 public static void Add(Forth f)
 {
     long b = f.PopInt64();
     long a = f.PopInt64();
     f.PushInt64(unchecked(a + b));
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例7: Multiply

 public static void Multiply(Forth f)
 {
     long b = f.PopInt64();
     long a = f.PopInt64();
     f.PushInt64(unchecked(a * b));
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例8: ByteHereReset

 public static void ByteHereReset(Forth f)
 {
     long l = f.PopInt64();
     f.byteHere = l;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:5,代碼來源:Forth.cs

示例9: Max

 public static void Max(Forth f)
 {
     long b = f.PopInt64();
     long a = f.PopInt64();
     f.PushInt64((a > b) ? a : b);
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例10: Int32Comma

 public static void Int32Comma(Forth f)
 {
     long value = f.PopInt64();
     f.byteMemory.WriteInt32(f.byteHere, unchecked((int)value));
     f.byteHere += 4;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例11: Int64Comma

 public static void Int64Comma(Forth f)
 {
     long value = f.PopInt64();
     f.byteMemory.WriteInt64(f.byteHere, value);
     f.byteHere += 8;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例12: Int16Comma

 public static void Int16Comma(Forth f)
 {
     long value = f.PopInt64();
     f.byteMemory.WriteInt16(f.byteHere, unchecked((short)value));
     f.byteHere+=2;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例13: ByteComma

 public static void ByteComma(Forth f)
 {
     long value = f.PopInt64();
     f.byteMemory[f.byteHere] = unchecked((byte)value);
     f.byteHere++;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例14: Int64Bang

 public static void Int64Bang(Forth f)
 {
     long offset = f.PopInt64();
     long value = f.PopInt64();
     f.byteMemory.WriteInt64(checked((int)offset), value);
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:6,代碼來源:Forth.cs

示例15: AuxPickBang

 public static void AuxPickBang(Forth f)
 {
     long pos = f.PopInt64();
     if (pos >= 256 || pos < 0) throw new ArgumentException("apick! too far");
     object v = f.dStack.Pop();
     f.aStack[(int)pos] = v;
 }
開發者ID:Sunlighter,項目名稱:SimpleForth,代碼行數:7,代碼來源:Forth.cs


注:本文中的SimpleForth.Forth.PopInt64方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。