/[VRac]/Orao.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Orao.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 56 by dpavlin, Tue Jul 31 15:03:23 2007 UTC revision 77 by dpavlin, Wed Aug 1 13:01:17 2007 UTC
# Line 51  sub init { Line 51  sub init {
51          $self->open_screen;          $self->open_screen;
52          $self->load_rom({          $self->load_rom({
53                  0x1000 => 'dump/SCRINV.BIN',                  0x1000 => 'dump/SCRINV.BIN',
54                    # should be 0x6000, but oraoemu has 2 byte prefix
55                    0x5FFE => 'dump/screen.dmp',
56                  0xC000 => 'rom/BAS12.ROM',                  0xC000 => 'rom/BAS12.ROM',
57                  0xE000 => 'rom/CRT12.ROM',                  0xE000 => 'rom/CRT12.ROM',
58          });          });
59    
60          $PC = 0xDD11;   # BC  #       $PC = 0xDD11;   # BC
61  #       $PC = 0xC274;   # MC  #       $PC = 0xC274;   # MC
62    
63          $orao = $self;          $orao = $self;
# Line 66  sub init { Line 68  sub init {
68          $self->trace( 0 );          $self->trace( 0 );
69          $self->debug( 0 );          $self->debug( 0 );
70    
71            $self->render( @mem[ 0x6000 .. 0x7fff ] );
72    
73          if ( $self->show_mem ) {          if ( $self->show_mem ) {
74    
75                  warn "rendering memory map\n";                  warn "rendering memory map\n";
76    
77                    $self->render_mem( @mem );
78    
79                  my @mmap = (                  my @mmap = (
80                          0x0000, 0x03FF, 'nulti blok',                          0x0000, 0x03FF, 'nulti blok',
81                          0x0400, 0x5FFF, 'korisnički RAM (23K)',                          0x0400, 0x5FFF, 'korisnički RAM (23K)',
# Line 81  sub init { Line 87  sub init {
87                          0xE000, 0xFFFF, 'sistemski ROM',                          0xE000, 0xFFFF, 'sistemski ROM',
88                  );                  );
89    
                 foreach my $i ( 0 .. $#mmap / 3 ) {  
                         my $o = $i * 3;  
                         my ( $from, $to, $desc ) = @mmap[$o,$o+1,$o+2];  
                         printf "%04x - %04x - %s\n", $from, $to, $desc;  
                         for my $a ( $from .. $to ) {  
                                 if ( $a >= 0x6000 && $a < 0x8000 ) {  
                                         my $b = $self->read( $a );  
                                         $self->vram( $a - 0x6000, $b );  
                                 } else {  
                                         $self->read( $a );  
                                 }  
                         }  
                 }  
   
90          } else {          } else {
91    
92                  warn "rendering video memory\n";                  warn "rendering video memory\n";
93                  for my $a ( 0x6000 .. 0x7fff ) {                  $self->render( @mem[ 0x6000 .. 0x7fff ] );
                         $self->vram( $a - 0x6000, $mem[$a] );  
                 }  
94                    
95          }          }
96          $self->sync;          $self->sync;
# Line 135  sub load_rom { Line 125  sub load_rom {
125          }          }
126  }  }
127    
128    # write chunk directly into memory, updateing vram if needed
 =head2 load_oraoemu  
   
 =cut  
   
129  sub _write_chunk {  sub _write_chunk {
130          my $self = shift;          my $self = shift;
131          my ( $addr, $chunk ) = @_;          my ( $addr, $chunk ) = @_;
# Line 156  sub _write_chunk { Line 142  sub _write_chunk {
142          $t = $end if ( $end < $t );          $t = $end if ( $end < $t );
143    
144          warn sprintf("refresh video ram %04x-%04x\n", $f, $t);          warn sprintf("refresh video ram %04x-%04x\n", $f, $t);
145          foreach my $a ( $f .. $t ) {  #       foreach my $a ( $f .. $t ) {
146                  $self->vram( $a - 0x6000 , $mem[ $a ] );  #               $self->vram( $a - 0x6000 , $mem[ $a ] );
147          }  #       }
148            $self->render( @mem[ 0x6000 .. 0x7fff ] );
149            $self->render_mem( @mem ) if $self->show_mem;
150  }  }
151    
152    =head2 load_oraoemu
153    
154    Load binary files, ROM images and Orao Emulator files
155    
156      $orao->load_oraoemu( '/path/to/file', 0x1000 );
157    
158    Returns true on success.
159    
160    =cut
161    
162  sub load_oraoemu {  sub load_oraoemu {
163          my $self = shift;          my $self = shift;
164          my ( $path, $addr ) = @_;          my ( $path, $addr ) = @_;
165    
166            if ( ! -e $path ) {
167                    warn "ERROR: file $path doesn't exist\n";
168                    return;
169            }
170    
171          my $size = -s $path || confess "no size for $path: $!";          my $size = -s $path || confess "no size for $path: $!";
172    
173          my $buff = read_file( $path );          my $buff = read_file( $path );
# Line 173  sub load_oraoemu { Line 176  sub load_oraoemu {
176                  $addr = 0;                  $addr = 0;
177                  warn sprintf "loading oraoemu 64k dump %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;                  warn sprintf "loading oraoemu 64k dump %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;
178                  $self->_write_chunk( $addr, substr($buff,2) );                  $self->_write_chunk( $addr, substr($buff,2) );
179                  return;                  return 1;
180          } elsif ( $size == 32800 ) {          } elsif ( $size == 32800 ) {
181                  $addr = 0;                  $addr = 0;
182                  warn sprintf "loading oraoemu 1.3 dump %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;                  warn sprintf "loading oraoemu 1.3 dump %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;
183                  $self->_write_chunk( $addr, substr($buff,0x20) );                  $self->_write_chunk( $addr, substr($buff,0x20) );
184                  return;                  return 1;
185          }          }
186          printf "loading %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;          printf "loading %s at %04x - %04x %02x\n", $path, $addr, $addr+$size-1, $size;
187          return $self->_write_chunk( $addr, $buff );          $self->_write_chunk( $addr, $buff );
188            return 1;
189    
190          my $chunk;          my $chunk;
191    
# Line 199  sub load_oraoemu { Line 203  sub load_oraoemu {
203    
204          $self->_write_chunk( $addr, $chunk );          $self->_write_chunk( $addr, $chunk );
205    
206            return 1;
207  };  };
208    
209  =head2 save_dump  =head2 save_dump
# Line 235  sub hexdump { Line 240  sub hexdump {
240          return sprintf(" %04x %s\n", $a,          return sprintf(" %04x %s\n", $a,
241                  join(" ",                  join(" ",
242                          map {                          map {
243                                  sprintf( "%02x", $_ )                                  if ( defined($_) ) {
244                                            sprintf( "%02x", $_ )
245                                    } else {
246                                            '  '
247                                    }
248                          } @mem[ $a .. $a+8 ]                          } @mem[ $a .. $a+8 ]
249                  )                  )
250          );          );
# Line 287  sub write { Line 296  sub write {
296          }          }
297    
298          if ( $addr > 0xafff ) {          if ( $addr > 0xafff ) {
299                  confess sprintf "write access 0x%04x > 0xafff aborting\n", $addr;                  warn sprintf "write access 0x%04x > 0xafff aborting\n", $addr;
300                    return;
301          }          }
302    
303          $self->mmap_pixel( $addr, $byte, 0, 0 );          $self->mmap_pixel( $addr, $byte, 0, 0 );
# Line 303  emulated device Line 313  emulated device
313    
314  =head2 prompt  =head2 prompt
315    
316    $orao->prompt( $address, $last_command );    my ( $entered_line, @p ) = $orao->prompt( $address, $last_command );
317    
318  =cut  =cut
319    
# Line 321  sub prompt { Line 331  sub prompt {
331          warn "## prompt got: $in\n" if $self->debug;          warn "## prompt got: $in\n" if $self->debug;
332          $in ||= $last;          $in ||= $last;
333          $last = $in;          $last = $in;
334          return split(/\s+/, $in) if $in;          return ( $in, split(/\s+/, $in) ) if $in;
335  }  }
336    
337  =head2 cli  =head2 cli
# Line 330  sub prompt { Line 340  sub prompt {
340    
341  =cut  =cut
342    
343    my $show_R = 0;
344    
345  sub cli {  sub cli {
346          my $self = shift;          my $self = shift;
347          my $a = $PC || confess "no pc?";          my $a = $PC || confess "no pc?";
348          while ( my @v = $self->prompt( $a, $last ) ) {          warn $self->dump_R() if $show_R;
349            while ( my ($line, @v) = $self->prompt( $a, $last ) ) {
350                  my $c = shift @v;                  my $c = shift @v;
351                    next unless defined($c);
352                  my $v = shift @v;                  my $v = shift @v;
353                  $v = hex($v) if $v && $v =~ m/^[0-9a-f]+$/;                  $v = hex($v) if $v && $v =~ m/^[0-9a-f]+$/;
354                  @v = map { hex($_) } @v;                  @v = map { hex($_) } @v;
# Line 356  t\t\ttrace [$t] Line 370  t\t\ttrace [$t]
370  d\t\tdebug [$d]  d\t\tdebug [$d]
371    
372  __USAGE__  __USAGE__
373                          warn sprintf(" PC: %04x A:%02x P:%02x X:%02x Y:%02x S:%02x\n", $PC, $A, $P, $X, $Y, $S);                          warn $self->dump_R;
374                  } elsif ( $c =~ m/^e/i ) {                  } elsif ( $c =~ m/^e/i ) {
375                          $a = $v if defined($v);                          $a = $v if defined($v);
376                          my $to = shift @v;                          my $to = shift @v;
377                          $to = $a + 32 if ( ! $to || $to <= $a );                          $to = $a + 32 if ( ! $to || $to <= $a );
378                          my $lines = int( ($to - $a - 8) / 8 );                          $to = 0xffff if ( $to > 0xffff );
379                          printf "## m %04x %04x lines: %d\n", $a, $to, $lines;                          my $lines = int( ($to - $a + 8) / 8 );
380                          while ( $lines ) {                          printf "## e %04x %04x (%d bytes) lines: %d\n", $a, $to, ($to-$a), $lines;
381                            while ( --$lines ) {
382                                  print $self->hexdump( $a );                                  print $self->hexdump( $a );
383                                  $a += 8;                                  $a += 8;
                                 $lines--;  
384                          }                          }
385                          $last = '+';                          $last = '+';
386                            $show_R = 0;
387                  } elsif ( $c =~ m/^\+/ ) {                  } elsif ( $c =~ m/^\+/ ) {
388                          $a += 8;                          $a += 8;
389                            $show_R = 0;
390                  } elsif ( $c =~ m/^\-/ ) {                  } elsif ( $c =~ m/^\-/ ) {
391                          $a -= 8;                          $a -= 8;
392                            $show_R = 0;
393                  } elsif ( $c =~ m/^m/i ) {                  } elsif ( $c =~ m/^m/i ) {
394                          $a = $v;                          $a = $v if defined($v);
395                          $self->poke_code( $a, @v );                          $self->poke_code( $a, @v );
396                          printf "poke %d bytes at %04x\n", $#v + 1, $a;                          printf "poke %d bytes at %04x\n", $#v + 1, $a;
397                          $last = '+';                          $last = '+';
398                            $show_R = 0;
399                  } elsif ( $c =~ m/^l/i ) {                  } elsif ( $c =~ m/^l/i ) {
400                          my $to = shift @v || 0x1000;                          my $to = shift @v || 0x1000;
401                          $a = $to;                          $a = $to;
# Line 389  __USAGE__ Line 407  __USAGE__
407                  } elsif ( $c =~ m/^r/i ) {                  } elsif ( $c =~ m/^r/i ) {
408                          $run_for = $v || 1;                          $run_for = $v || 1;
409                          print "run_for $run_for instructions\n";                          print "run_for $run_for instructions\n";
410                            $show_R = 1;
411                          last;                          last;
412                  } elsif ( $c =~ m/^(u|j)/ ) {                  } elsif ( $c =~ m/^(u|j)/ ) {
413                          my $to = $v || $a;                          my $to = $v || $a;
414                          printf "set pc to %04x\n", $to;                          printf "set pc to %04x\n", $to;
415                          $PC = $to;      # remember for restart                          $PC = $to;      # remember for restart
416                          $run_for = 1;                          $run_for = 1;
417                          $last = sprintf('m %04x', $to);                          $last = "r $run_for";
418                            $show_R = 1;
419                          last;                          last;
420                  } elsif ( $c =~ m/^t/ ) {                  } elsif ( $c =~ m/^t/ ) {
421                          $self->trace( not $self->trace );                          $self->trace( not $self->trace );
422                          print "trace ", $self->trace ? 'on' : 'off', "\n";                          print "trace ", $self->trace ? 'on' : 'off', "\n";
423                            $last = '';
424                  } elsif ( $c =~ m/^d/ ) {                  } elsif ( $c =~ m/^d/ ) {
425                          $self->debug( not $self->debug );                          $self->debug( not $self->debug );
426                          print "debug ", $self->debug ? 'on' : 'off', "\n";                          print "debug ", $self->debug ? 'on' : 'off', "\n";
427                            $last = '';
428                  } else {                  } else {
429                          warn "# ignore $c\n";                          warn "# ignored $line\n" if ($line);
430                          last;                          $last = '';
431                  }                  }
432          }          }
433    
   
434  }  }
435    
436  =head1 AUTHOR  =head1 AUTHOR

Legend:
Removed from v.56  
changed lines
  Added in v.77

  ViewVC Help
Powered by ViewVC 1.1.26