Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
architecture yafn { registers: storage sys_reg[96]; view ssz = sys_reg[0..32]; /* stack size */ view spn = sys_reg[32..64]; /* pointer to stack's beginning */ view err = sys_reg[64..96]; /* error register */ memory: /* 0xFFFFFFFF because we use 32-bit integers, so it will just fit */ range __constants [0x0..0xFFFFFFFF] { cell = 8; endianess = little-endian; granularity = 0; } range __data [0x0..0xFFFFFFFF] { cell = 8; endianess = little-endian; granularity = 0; } range __stack [0x0..0xFFFFFFFF] { cell = 8; endianess = little-endian; granularity = 0; } range __code [0x0..0xFFFFFFFF] { cell = 8; endianess = little-endian; granularity = 0; } instructions: /* encodings */ encode __dat field = immediate[32] data; /* some integer */ encode __off field = immediate[32] offset; /* offset in memory */ encode __lbl field = immediate[32] offset; /* pointer to instruction */ encode __reg field = register { ssz = 00, spn = 01, err = 10 }; instructions: /* base */ instruction emp = { 0000 0000 }; /* do nothing */ instruction hlt = { 0000 0001 }; /* exits program */ instruction brp = { 0000 0010 }; /* breakpoint */ instruction wrt = { 0000 0011 }; /* outouts int from stack to console */ instruction srt = { 0000 0100 }; /* sorts last N elements of stack */ instructions: /* stack instructions */ instruction epush = { 0001 0001 }; /* pushes error register to stack */ instruction ipush = { 0001 0010, __dat as dat }; /* pushes integer to stack */ instruction mpush = { 0001 0011, __off as off }; /* pushes from mem storage to stack */ instruction cpush = { 0001 0100, __off as off }; /* pushes from constants storage to stack */ /* pop instructions */ instruction pop = { 0001 0101 }; /* discards top value from stack */ instruction dpl = { 0001 0110 }; /* duplicates last element from stack */ instruction sav = { 0001 0111, __off as off }; /* pops data from stack and stores it in memory */ instruction swp = { 0001 1000 }; /* swaps top two values */ instruction svs = { 0001 1001 }; /* pops data and place in memory to save */ instruction rnd = { 0001 1010 }; /* pushes to stack random int */ instruction smpsh = { 0001 1011 }; /* gets mem_ptr from stack to push fom mem */ instruction scpsh = { 0001 1100 }; /* gets const_ptr from stack to push fom mem */ /* all operations automatically pops top elements, so it's necessary to use `dpl` */ instructions: /* arithmetics */ instruction add = { 0010 0000 }; /* adds two top values on stack */ instruction sub = { 0010 0001 }; /* substracts two top values of stack */ instruction mul = { 0010 0010 }; /* multiplies two top values of stack */ instruction div = { 0010 0011 }; /* dividies two top values of stack and pushes to stack result integer division and remainder */ instruction neg = { 0010 0100 }; /* negatives top element of stack */ instruction inc = { 0010 0101 }; /* increments top element of stack */ instruction dec = { 0010 0110 }; /* decrements top element of stack */ instructions: /* bitwise ops */ instruction bor = { 0011 0000 }; /* bitwise or */ instruction band = { 0011 0001 }; /* bitwise and */ instruction and1 = { 0011 0100 }; /* bitwise and of top element and 1 */ instruction and2 = { 0011 0101 }; /* bitwise and of top element and 2 */ instruction and3 = { 0011 0110 }; /* bitwise and of top element and 4 */ instruction and4 = { 0011 0111 }; /* bitwise and of top element and 8 */ instruction lsh = { 0011 0010 }; /* left shift */ instruction lsh1 = { 0011 1000 }; /* shifts top element left on 1 */ instruction lsh2 = { 0011 1001 }; /* shifts top element left on 2 */ instruction rsh = { 0011 0011 }; /* right shift */ instruction rsh1 = { 0011 1100 }; /* shifts top element right on 1 */ instruction rsh2 = { 0011 1101 }; /* shifts top element right on 2 */ instruction bxor = { 0011 1111 }; /* bitwise xor */ instructions: /* conditions and jumps */ instruction cmp = { 0100 0000 }; /* compares two elements --------------------- | state | pushes | --------------------- | == | 001 | | >= | 011 | | <= | 101 | | > | 010 | | < | 100 | --------------------- So, the first bit for equality, second one for greatness and third one for less */ instruction eq = { 0100 0001 }; /* pushes 1 if top values equal, else 0 */ instruction jmp = { 0100 0100, __lbl as lbl }; /* jumps to instruction */ instruction jez = { 0100 0101, __lbl as lbl }; /* jmps to instructions if 0 on stack top */ instruction jnz = { 0100 0110, __lbl as lbl }; /* jmps to instructions if on stack top not 0 */ instruction call = { 0100 0111, __lbl as lbl }; /* jmps to instructions and pushes current cursor to stack */ instruction ret = { 0100 1000 }; /* jps to address at stack top and pops */ instruction cmp0 = { 0100 1001 }; /* compares with 0 */ mnemonics: /* formats */ format plain1 is "{1}"; /* for numbers */ format mem_ptr is "*{1}"; /* for memory pointers */ format const_ptr is "#{1}"; /* for constants pointers */ mnemonics: /* base */ mnemonic emp(); mnemonic hlt(); mnemonic brp(); mnemonic wrt(); mnemonic srt(); mnemonics: /* stack instructions */ mnemonic epush(); mnemonic push for ipush(dat) plain1; mnemonic push for cpush(off) const_ptr; mnemonic push for mpush(off) mem_ptr; mnemonic pop(); mnemonic dpl(); mnemonic sav for sav(off) mem_ptr; mnemonic swp(); mnemonic sav for svs(); mnemonic rnd(); mnemonic smpsh(); mnemonic scpsh(); mnemonics: /* arithmetics instructions */ mnemonic add(); mnemonic sub(); mnemonic mul(); mnemonic div(); mnemonic neg(); mnemonic inc(); mnemonic dec(); mnemonics: /* bitwise instructions */ mnemonic bor(); mnemonic band(); mnemonic and1(); mnemonic and2(); mnemonic and3(); mnemonic and4(); mnemonic lsh(); mnemonic lsh1(); mnemonic lsh2(); mnemonic rsh(); mnemonic rsh1(); mnemonic rsh2(); mnemonic bxor(); mnemonics: /* conditions */ mnemonic cmp(); mnemonic eq(); mnemonic jmp for jmp(lbl) plain1; mnemonic jez for jez(lbl) plain1; mnemonic jnz for jnz(lbl) plain1; mnemonic call for call(lbl) plain1; mnemonic ret(); mnemonic cmp0(); }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Die 7 wichtigsten Aktionen diese Woche
4 hours ago | 4.17 KB
Untitled
4 hours ago | 13.34 KB
Untitled
5 hours ago | 13.59 KB
VNC SCRIPT 2/2: autoinput.vbs
VBScript | 15 hours ago | 0.23 KB
VNC SCRIPT 1/2: vncauto.bat
Batch | 15 hours ago | 0.72 KB
videoscheomedia
XML | 17 hours ago | 1.00 KB
Untitled
21 hours ago | 14.91 KB
autconnectVNC.bat
Batch | 22 hours ago | 0.93 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!