Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #!/usr/bin/perl
  2.  
  3. use warnings;
  4. use strict;
  5.  
  6. die "Usage: makeopv.pl <opcode> <flags> <value>\n" if (@ARGV != 3);
  7.  
  8. my ($opcode, $flags, $value) = @ARGV;
  9.  
  10. printf("0x%.8x\n", oct($opcode) | oct($flags) << 10 | oct($value) << 18);
  11.  
  12.