/[VRac]/M6502/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 /M6502/Orao.pm

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

revision 47 by dpavlin, Tue Jul 31 10:16:36 2007 UTC revision 71 by dpavlin, Tue Jul 31 17:42:03 2007 UTC
# Line 3  package Orao; Line 3  package Orao;
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use Carp;  use Carp qw/confess/;
7  use lib './lib';  use lib './lib';
8  #use Time::HiRes qw(time);  #use Time::HiRes qw(time);
9  use File::Slurp;  use File::Slurp;
10  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
11  use M6502;  use M6502;
12    
13  use base qw(Class::Accessor M6502 Screen);  use base qw(Class::Accessor M6502 Screen Prefs);
14  __PACKAGE__->mk_accessors(qw(debug trace run_for mem_dump trace));  __PACKAGE__->mk_accessors(qw(run_for));
15    
16  =head1 NAME  =head1 NAME
17    
# Line 33  Emulator or Orao 8-bit 6502 machine popu Line 33  Emulator or Orao 8-bit 6502 machine popu
33    
34  =head2 init  =head2 init
35    
36  Start emulator  Start emulator, open L<Screen>, load initial ROM images, and render memory
37    
38  =cut  =cut
39    
# Line 46  sub init { Line 46  sub init {
46          warn "Orao calling upstream init\n";          warn "Orao calling upstream init\n";
47          $self->SUPER::init( $self, @_ );          $self->SUPER::init( $self, @_ );
48    
49          warn "staring Orao $Orao::VERSION emulation\n";          warn "Orao $Orao::VERSION emulation starting\n";
50    
51          $self->open_screen;          $self->open_screen;
52          $self->load_rom({          $self->load_rom({
# Line 62  sub init { Line 62  sub init {
62    
63  #       $self->prompt( 0x1000 );  #       $self->prompt( 0x1000 );
64    
65          my $trace = $self->trace;          my ( $trace, $debug ) = ( $self->trace, $self->debug );
66          $self->trace( 0 );          $self->trace( 0 );
67            $self->debug( 0 );
68    
69          if ( $self->show_mem ) {          if ( $self->show_mem ) {
70    
# Line 104  sub init { Line 105  sub init {
105          }          }
106          $self->sync;          $self->sync;
107          $self->trace( $trace );          $self->trace( $trace );
108            $self->debug( $debug );
109    
110          #( $A, $P, $X, $Y, $S, $IPeriod ) = ( 1, 2, 3, 4, 5, 6 );          #( $A, $P, $X, $Y, $S, $IPeriod ) = ( 1, 2, 3, 4, 5, 6 );
111    
112          warn "Orao init finished", $self->trace ? ' trace on' : '', "\n";          warn "Orao init finished",
113                    $self->trace ? ' trace' : '',
114                    $self->debug ? ' debug' : '',
115                    "\n";
116    
117  }  }
118    
# Line 130  sub load_rom { Line 135  sub load_rom {
135          }          }
136  }  }
137    
138    # write chunk directly into memory, updateing vram if needed
 =head2 load_oraoemu  
   
 =cut  
   
139  sub _write_chunk {  sub _write_chunk {
140          my $self = shift;          my $self = shift;
141          my ( $addr, $chunk ) = @_;          my ( $addr, $chunk ) = @_;
# Line 156  sub _write_chunk { Line 157  sub _write_chunk {
157          }          }
158  }  }
159    
160    =head2 load_oraoemu
161    
162    Load binary files, ROM images and Orao Emulator files
163    
164      $orao->load_oraoemu( '/path/to/file', 0x1000 );
165    
166    Returns true on success.
167    
168    =cut
169    
170  sub load_oraoemu {  sub load_oraoemu {
171          my $self = shift;          my $self = shift;
172          my ( $path, $addr ) = @_;          my ( $path, $addr ) = @_;
173    
174            if ( ! -e $path ) {
175                    warn "ERROR: file $path doesn't exist\n";
176                    return;
177            }
178    
179          my $size = -s $path || confess "no size for $path: $!";          my $size = -s $path || confess "no size for $path: $!";
180    
181          my $buff = read_file( $path );          my $buff = read_file( $path );
# Line 168  sub load_oraoemu { Line 184  sub load_oraoemu {
184                  $addr = 0;                  $addr = 0;
185                  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;
186                  $self->_write_chunk( $addr, substr($buff,2) );                  $self->_write_chunk( $addr, substr($buff,2) );
187                  return;                  return 1;
188          } elsif ( $size == 32800 ) {          } elsif ( $size == 32800 ) {
189                  $addr = 0;                  $addr = 0;
190                  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;
191                  $self->_write_chunk( $addr, substr($buff,0x20) );                  $self->_write_chunk( $addr, substr($buff,0x20) );
192                  return;                  return 1;
193          }          }
194          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;
195          return $self->_write_chunk( $addr, $buff );          $self->_write_chunk( $addr, $buff );
196            return 1;
197    
198          my $chunk;          my $chunk;
199    
# Line 194  sub load_oraoemu { Line 211  sub load_oraoemu {
211    
212          $self->_write_chunk( $addr, $chunk );          $self->_write_chunk( $addr, $chunk );
213    
214            return 1;
215  };  };
216    
217  =head2 save_dump  =head2 save_dump
# Line 230  sub hexdump { Line 248  sub hexdump {
248          return sprintf(" %04x %s\n", $a,          return sprintf(" %04x %s\n", $a,
249                  join(" ",                  join(" ",
250                          map {                          map {
251                                  sprintf( "%02x", $_ )                                  if ( defined($_) ) {
252                                            sprintf( "%02x", $_ )
253                                    } else {
254                                            '  '
255                                    }
256                          } @mem[ $a .. $a+8 ]                          } @mem[ $a .. $a+8 ]
257                  )                  )
258          );          );
259  }  }
260    
 =head2 prompt  
   
   $orao->prompt( $address, $last_command );  
   
 =cut  
   
 sub prompt {  
         my $self = shift;  
         $self->app->sync;  
         my $a = shift;  
         my $last = shift;  
         print STDERR $self->hexdump( $a ),  
                 $last ? "[$last] " : '',  
                 "> ";  
         my $in = <STDIN>;  
         chomp($in);  
         $in ||= $last;  
         $last = $in;  
         return split(/\s+/, $in) if $in;  
 }  
   
261  =head1 Memory management  =head1 Memory management
262    
263  Orao implements all I/O using mmap addresses. This was main reason why  Orao implements all I/O using mmap addresses. This was main reason why
# Line 298  sub write { Line 299  sub write {
299                  $self->vram( $addr - 0x6000 , $byte );                  $self->vram( $addr - 0x6000 , $byte );
300          }          }
301    
         if ( $addr > 0xafff ) {  
                 warn sprintf "access to %04x above affff aborting\n", $addr;  
                 return -1;  
         }  
302          if ( $addr == 0x8800 ) {          if ( $addr == 0x8800 ) {
303                  warn sprintf "sound ignored: %x\n", $byte;                  warn sprintf "sound ignored: %x\n", $byte;
304          }          }
305    
306            if ( $addr > 0xafff ) {
307                    warn sprintf "write access 0x%04x > 0xafff aborting\n", $addr;
308                    return;
309            }
310    
311          $self->mmap_pixel( $addr, $byte, 0, 0 );          $self->mmap_pixel( $addr, $byte, 0, 0 );
312    
313          $mem[$addr] = $byte;          $mem[$addr] = $byte;
# Line 317  sub write { Line 319  sub write {
319  Command-line debugging intrerface is implemented for communication with  Command-line debugging intrerface is implemented for communication with
320  emulated device  emulated device
321    
322    =head2 prompt
323    
324      my ( $entered_line, @p ) = $orao->prompt( $address, $last_command );
325    
326    =cut
327    
328    my $last = 'r 1';
329    
330    sub prompt {
331            my $self = shift;
332            $self->app->sync;
333            my $a = shift;
334            print STDERR $self->hexdump( $a ),
335                    $last ? "[$last] " : '',
336                    "> ";
337            my $in = <STDIN>;
338            chomp($in);
339            warn "## prompt got: $in\n" if $self->debug;
340            $in ||= $last;
341            $last = $in;
342            return ( $in, split(/\s+/, $in) ) if $in;
343    }
344    
345  =head2 cli  =head2 cli
346    
347    $orao->cli();    $orao->cli();
348    
349  =cut  =cut
350    
351  my $last = 'r 1';  my $show_R = 0;
352    
353  sub cli {  sub cli {
354          my $self = shift;          my $self = shift;
355          my $a = $PC || confess "no pc?";          my $a = $PC || confess "no pc?";
356          while ( my @v = $self->prompt( $a, $last ) ) {          warn $self->dump_R() if $show_R;
357            while ( my ($line, @v) = $self->prompt( $a, $last ) ) {
358                  my $c = shift @v;                  my $c = shift @v;
359                    next unless defined($c);
360                  my $v = shift @v;                  my $v = shift @v;
361                  $v = hex($v) if $v && $v =~ m/^[0-9a-f]+$/;                  $v = hex($v) if $v && $v =~ m/^[0-9a-f]+$/;
                 printf "## [%s] %s\n", ($v || 'undef'), join(",",@v) if $self->debug;  
362                  @v = map { hex($_) } @v;                  @v = map { hex($_) } @v;
363                    printf "## a: %04x parsed cli: c:%s v:%s %s\n", $a, $c, ($v || 'undef'), join(",",@v) if $self->debug;
364                  if ( $c =~ m/^[qx]/i ) {                  if ( $c =~ m/^[qx]/i ) {
365                          exit;                          exit;
366                  } elsif ( $c eq '?' ) {                  } elsif ( $c eq '?' ) {
367                            my $t = $self->trace ? 'on' : 'off' ;
368                            my $d = $self->debug ? 'on' : 'off' ;
369                          warn <<__USAGE__;                          warn <<__USAGE__;
370  uage:  Usage:
371    
372  x|q\t\texit  x|q\t\texit
373  e 6000 6010\tdump memory, +/- to walk forward/backward  e 6000 6010\tdump memory, +/- to walk forward/backward
374  m 1000 ff 00\tput ff 00 on 1000  m 1000 ff 00\tput ff 00 on 1000
375  j|u 1000\t\tjump (change pc)  j|u 1000\t\tjump (change pc)
376  r 42\t\trun 42 instruction opcodes  r 42\t\trun 42 instruction opcodes
377    t\t\ttrace [$t]
378    d\t\tdebug [$d]
379    
380  __USAGE__  __USAGE__
381                            warn $self->dump_R;
382                  } elsif ( $c =~ m/^e/i ) {                  } elsif ( $c =~ m/^e/i ) {
383                          $a ||= $v;                          $a = $v if defined($v);
384                          my $to = shift @v;                          my $to = shift @v;
385                          $to = $a + 32 if ( ! $to || $to <= $a );                          $to = $a + 32 if ( ! $to || $to <= $a );
386                          my $lines = int( ($to - $a - 8) / 8 );                          $to = 0xffff if ( $to > 0xffff );
387                          printf "## m %04x %04x lines: %d\n", $a, $to, $lines;                          my $lines = int( ($to - $a + 8) / 8 );
388                          while ( $lines ) {                          printf "## e %04x %04x (%d bytes) lines: %d\n", $a, $to, ($to-$a), $lines;
389                            while ( --$lines ) {
390                                  print $self->hexdump( $a );                                  print $self->hexdump( $a );
391                                  $a += 8;                                  $a += 8;
                                 $lines--;  
392                          }                          }
393                          $last = '+';                          $last = '+';
394                            $show_R = 0;
395                  } elsif ( $c =~ m/^\+/ ) {                  } elsif ( $c =~ m/^\+/ ) {
396                          $a += 8;                          $a += 8;
397                            $show_R = 0;
398                  } elsif ( $c =~ m/^\-/ ) {                  } elsif ( $c =~ m/^\-/ ) {
399                          $a -= 8;                          $a -= 8;
400                            $show_R = 0;
401                  } elsif ( $c =~ m/^m/i ) {                  } elsif ( $c =~ m/^m/i ) {
402                          $a = $v;                          $a = $v if defined($v);
403                          $self->poke_code( $a, @v );                          $self->poke_code( $a, @v );
404                          printf "poke %d bytes at %04x\n", $#v + 1, $a;                          printf "poke %d bytes at %04x\n", $#v + 1, $a;
405                            $last = '+';
406                            $show_R = 0;
407                  } elsif ( $c =~ m/^l/i ) {                  } elsif ( $c =~ m/^l/i ) {
408                          my $to = shift @v || 0x1000;                          my $to = shift @v || 0x1000;
409                          $a = $to;                          $a = $to;
410                          $self->load_oraoemu( $v, $a );                          $self->load_oraoemu( $v, $a );
411                            $last = '';
412                  } elsif ( $c =~ m/^s/i ) {                  } elsif ( $c =~ m/^s/i ) {
413                          $self->save_dump( $v || 'mem.dump', @v );                          $self->save_dump( $v || 'mem.dump', @v );
414                            $last = '';
415                  } elsif ( $c =~ m/^r/i ) {                  } elsif ( $c =~ m/^r/i ) {
416                          $run_for = $v || 1;                          $run_for = $v || 1;
417                          print "run_for $run_for instructions\n";                          print "run_for $run_for instructions\n";
418                            $show_R = 1;
419                          last;                          last;
420                  } elsif ( $c =~ m/^(u|j)/ ) {                  } elsif ( $c =~ m/^(u|j)/ ) {
421                          my $to = $v || $a;                          my $to = $v || $a;
422                          printf "set pc to %04x\n", $to;                          printf "set pc to %04x\n", $to;
423                          $PC = $to;      # remember for restart                          $PC = $to;      # remember for restart
424                          $run_for = 1;                          $run_for = 1;
425                            $last = "r $run_for";
426                            $show_R = 1;
427                          last;                          last;
428                  } elsif ( $c =~ m/^t/ ) {                  } elsif ( $c =~ m/^t/ ) {
429                          $self->trace( not $self->trace );                          $self->trace( not $self->trace );
430                          print "trace ", $self->trace ? 'on' : 'off', "\n";                          print "trace ", $self->trace ? 'on' : 'off', "\n";
431                            $last = '';
432                    } elsif ( $c =~ m/^d/ ) {
433                            $self->debug( not $self->debug );
434                            print "debug ", $self->debug ? 'on' : 'off', "\n";
435                            $last = '';
436                  } else {                  } else {
437                          warn "# ignore $c\n";                          warn "# ignored $line\n" if ($line);
438                          last;                          $last = '';
439                  }                  }
440          }          }
441    
   
442  }  }
443    
444  =head1 AUTHOR  =head1 AUTHOR

Legend:
Removed from v.47  
changed lines
  Added in v.71

  ViewVC Help
Powered by ViewVC 1.1.26