HDLRuby 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.html +2330 -2670
- data/README.md +391 -101
- data/ext/hruby_sim/hruby_rcsim_build.c +400 -3
- data/ext/hruby_sim/hruby_sim.h +2 -1
- data/ext/hruby_sim/hruby_sim_calc.c +1 -1
- data/ext/hruby_sim/hruby_sim_core.c +15 -5
- data/ext/hruby_sim/hruby_sim_tree_calc.c +1 -1
- data/lib/HDLRuby/hdr_samples/c_program/echo.c +33 -0
- data/lib/HDLRuby/hdr_samples/ruby_program/echo.rb +9 -0
- data/lib/HDLRuby/hdr_samples/ruby_program/stdrw.rb +6 -0
- data/lib/HDLRuby/hdr_samples/ruby_program/sw_cpu_terminal.rb +614 -0
- data/lib/HDLRuby/hdr_samples/ruby_program/sw_inc_mem.rb +32 -0
- data/lib/HDLRuby/hdr_samples/ruby_program/sw_log.rb +33 -0
- data/lib/HDLRuby/hdr_samples/with_board.rb +63 -0
- data/lib/HDLRuby/hdr_samples/with_clocks.rb +42 -0
- data/lib/HDLRuby/hdr_samples/with_of.rb +1 -1
- data/lib/HDLRuby/hdr_samples/with_program_c.rb +28 -0
- data/lib/HDLRuby/hdr_samples/with_program_ruby.rb +28 -0
- data/lib/HDLRuby/hdr_samples/with_program_ruby_cpu.rb +234 -0
- data/lib/HDLRuby/hdr_samples/with_program_ruby_io.rb +23 -0
- data/lib/HDLRuby/hdr_samples/with_program_ruby_mem.rb +58 -0
- data/lib/HDLRuby/hdr_samples/with_program_ruby_threads.rb +56 -0
- data/lib/HDLRuby/hdr_samples/with_sequencer_func.rb +2 -4
- data/lib/HDLRuby/hdrcc.rb +60 -21
- data/lib/HDLRuby/hruby_error.rb +13 -0
- data/lib/HDLRuby/hruby_high.rb +50 -7
- data/lib/HDLRuby/hruby_low.rb +74 -30
- data/lib/HDLRuby/hruby_rcsim.rb +89 -5
- data/lib/HDLRuby/std/clocks.rb +118 -50
- data/lib/HDLRuby/std/std.rb +5 -0
- data/lib/HDLRuby/ui/hruby_board.rb +1079 -0
- data/lib/HDLRuby/version.rb +1 -1
- data/lib/c/Rakefile +8 -0
- data/lib/c/cHDL.h +12 -0
- data/lib/c/extconf.rb +7 -0
- data/lib/rubyHDL.rb +33 -0
- data/tuto/gui_accum.png +0 -0
- data/tuto/gui_board.png +0 -0
- data/tuto/tutorial_sw.html +2263 -1890
- data/tuto/tutorial_sw.md +957 -62
- metadata +24 -5
- data/README.pdf +0 -0
- data/tuto/tutorial_sw.pdf +0 -0
data/lib/HDLRuby/version.rb
CHANGED
data/lib/c/Rakefile
ADDED
data/lib/c/cHDL.h
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* Interface for C program with HDLRuby hardware.
|
3
|
+
**/
|
4
|
+
|
5
|
+
/** The wrapper for getting an interface port for C software. */
|
6
|
+
extern void* c_get_port(const char* name);
|
7
|
+
|
8
|
+
/** The wrapper for getting a value from a port. */
|
9
|
+
extern unsigned long long c_read_port(void* port);
|
10
|
+
|
11
|
+
/** The wrapper for setting a value to a port. */
|
12
|
+
extern unsigned long long c_write_port(void* port, unsigned long long val);
|
data/lib/c/extconf.rb
ADDED
data/lib/rubyHDL.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'hruby_sim/hruby_sim'
|
2
|
+
|
3
|
+
##
|
4
|
+
# Module for accessing HDLRuby hardware from a ruby program excuted on
|
5
|
+
# an embedded processor: HDLRuby simulator version.
|
6
|
+
########################################################################
|
7
|
+
module RubyHDL
|
8
|
+
|
9
|
+
# Creates a new port 'name' assigned to signal 'sig' for reading.
|
10
|
+
def self.inport(name,sig)
|
11
|
+
# Create the accessing methods.
|
12
|
+
# For reading.
|
13
|
+
define_singleton_method(name.to_sym) do
|
14
|
+
RCSim.rcsim_get_signal_fixnum(sig)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# Creates a new wport 'name' assigned to signal 'sig' for writing.
|
19
|
+
def self.outport(name,sig)
|
20
|
+
# For writing.
|
21
|
+
define_singleton_method(:"#{name}=") do |val|
|
22
|
+
RCSim.rcsim_transmit_fixnum_to_signal_seq(sig,val)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# Creates a new program 'name' assign to simulator code 'code'.
|
27
|
+
def self.program(name,code)
|
28
|
+
# Create the accessing method.
|
29
|
+
define_singleton_method(name.to_sym) do
|
30
|
+
code
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
data/tuto/gui_accum.png
ADDED
Binary file
|
data/tuto/gui_board.png
ADDED
Binary file
|