Subversion Repositories HelenOS-historic

Rev

Rev 534 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
304 decky 1
# Test machine features
2
#  - Standard PC system
3
#  - 256 Mb memory
4
#  - 40 MHz processor(s)
5
#  - AM79C960 NIC (ISA Lance)
6
#  - Voodoo3 PCI graphics device
7
 
8
@num_processors = 2 
9
#@num_processors = 1
10
 
305 jermar 11
@if not "cpu_class"               in dir(): cpu_class = "x86-hammer"
304 decky 12
@if not "clock_freq_mhz"          in dir(): clock_freq_mhz = 40
13
@if not "memory_megs"             in dir(): memory_megs = 256
14
 
718 decky 15
@if not "floppy_image"            in dir(): floppy_image = "image.boot"
304 decky 16
@if not "use_voodoo3_pci"         in dir(): use_voodoo3_pci = 1
17
@if not "use_voodoo3_agp"         in dir(): use_voodoo3_agp = 0
18
@if not "boot_dev"                in dir(): boot_dev = "A"
19
 
20
run-command-file ../x86-test-machine/pc-common.simics
21
 
22
@if floppy_image != None:
23
	eval_cli_line("flp0.insert-floppy A %s" % floppy_image)