2021-01-29から1日間の記事一覧

CG、CGS

/カンプレス/ compressed gas compressed gas sampling https://www.pmeasuring.com/wp-content/uploads/2019/03/effective-compressed-gas-contamination-monitor-1.pdf

Tri-Clamp

どこかの会社の商標。トライクランプ。 こんな感じのクランプ

.mifファイルを生成するアセンブラのようなものを作る

def generate_mif(file_name, width, depth, rom): f = open(file_name, 'w') f.write("WIDTH=%d;\n" % width) f.write("DEPTH=%d;\n" % depth) f.write("ADDRESS_RADIX=UNS;\n") f.write("DATA_RADIX=BIN;\n") f.write("CONTENT BEGIN\n") format_of_code =…