To run a verilog simulation using irun and create a shm waveform file,
initial begin
$shm_open("waves.shm"); $shm_probe("AS");
end
run with irun -access +r testcase.sv
Or create this tcl file:
To run a verilog simulation using irun and create a shm waveform file,
initial begin
$shm_open("waves.shm"); $shm_probe("AS");
end
run with irun -access +r testcase.sv
Or create this tcl file:
Update: Meetup had revived the group and are welcoming us back again. At the end, no data was lost, even though interim communications suggested it was.
We are happy that things had finally taken a positive turn and are happy to stay at meetup and grow our community to our next event and next next event. We are a little bit sorry that things went soar for awhile but what's important is that at the end both us and meetup had learned how to make things better for the next time.
Original post below....
TL;DR: Meetup had deleted my group, for what I beleive to be their mistake, yet they did not admit the mistake nor can they restore the data. I am deeply dissapointed from meetup and I've lost my trust in them.
//To change the way (below) is displayed | |
$display("%t", $realtime); | |
//$timeformat(unit#, prec#, "unit", minwidth); | |
$timeformat(-3, 2, " ms", 10); // -3 and " ms" give useful display msg | |
unit is the base that time is to be displayed in, from 0 to -15 | |
precision is the number of decimal points to display. | |
"unit" is a string appended to the time, such as " ns". | |
minwidth is the minimum number of characters that will be displayed. |
<script type="text/javascript"> | |
var a_function = function() { | |
var a_number = 2; | |
document.write('Within a_function, a_number = '+a_number+'<br>'); | |
return function(a) { | |
document.write('Within the callback, a_number = '+a_number+'<br>'); | |
document.write('Within the callback, I was passed = '+a+'<br>'); | |
document.write('Within the callback, a * a_number = '+a*a_number+'<br>'); |
### Do these once | |
ifconfig en1|grep ether > .macaddress #Save your real mac address somewhere | |
#Alias the airport adapter | |
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport | |
###Then each time you want to change MAC address: | |
airport -z #disconnect but don't turn off the airport | |
sudo ifconfig en1 ether 00:00:00:00:00:00 #set new mac address (perhaps just increment your old one) | |
ifconfig en1|grep ether #check it's actually changed |
configuration = configure do |config| | |
config.tail_logs = true | |
config.max_connections = 55 | |
config.admin_password = 'secret' | |
config.app_server do |app_server_config| | |
app_server_config.port = 8808 | |
app_server_config.admin_password = config.admin_password | |
end | |
end | |
#!/usr/bin/env ruby | |
require 'slop' | |
opts = Slop.parse do | |
banner "Usage: ruby foo.rb [options]\n" | |
on :n, :name, 'Your username', true | |
on :a, :age, 'Your age (optional)', :optional => true | |
on :V, :verbose, 'Run in verbose mode', :default => false |
diff --git a/gc.c b/gc.c | |
--- a/gc.c | |
+++ b/gc.c | |
@@ -77,6 +77,41 @@ void *alloca (); | |
#ifndef GC_MALLOC_LIMIT | |
#define GC_MALLOC_LIMIT 8000000 | |
#endif | |
+#define HEAP_MIN_SLOTS 10000 | |
+#define FREE_MIN 4096 | |
+ |