Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
int main(int argc, char **argv) {
volatile int k=10000;
volatile int s;
volatile int i;
volatile int j;
for (s=0,i=0;i<k;i++) {
for (j=0;j<k;j++)
s+=i*j;
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
enum op_codes
{
OP_NOP=1, OP_JMP, OP_JMP_GE,
OP_MOV, OP_ADD, OP_MUL,
OP_PRINT, OP_RET