module I_level_shift(in,out); input in; output out; current in,out; parameter real iout_offset = 0; analog I(out) <+ I(in) + iout_offset; endmodule