- 生きた
- DRAM controllerの動作確認の用意を進めた
- SDRAM testerを作った
- がtesterの動作確認がC++でもまだ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| \usepackage{algorithm} | |
| \usepackage{algorithmic} | |
| \begin{document} | |
| \begin{algorithm} | |
| \caption{Calculate $y = x^n$} | |
| \label{alg1} | |
| \begin{algorithmic} | |
| \REQUIRE $n \geq 0 \vee x \neq 0$ | |
| \ENSURE $y = x^n$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # -*- sh -*- | |
| xbacklight = $(echo $(xbacklight) $1 $2 | bc) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # ~/.bashrc | |
| # | |
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| alias ls='ls --color=auto' | |
| PS1='[\u@\h \W]\$ ' | |
| export EDITOR=emacsclient |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pkgname=open-usp-tukubai | |
| pkgver=2014061402 | |
| pkgrel=1 | |
| pkgdesc="An open source version of shell commands usp Tukubai." | |
| arch=('any') | |
| url="https://uec.usp-lab.com/TUKUBAI/CGI/TUKUBAI.CGI" | |
| license=('MIT') | |
| depends=('python') | |
| source=("https://uec.usp-lab.com/TUKUBAI/DOWNLOAD/open-usp-tukubai-2014061402.tar.bz2") | |
| pkgdir=/usr/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ "$1" = "" ]]; then | |
| echo "usage : bash $0 [assembly-name]" | |
| else | |
| IFS=$'\n' | |
| BAK="$1~" | |
| PC=0 | |
| mv "$1" $BAK | |
| for l in $(cat $BAK); do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/awk -f | |
| BEGIN { | |
| PC="0"; | |
| } | |
| !/\.text|\.data|\.globl|\.long|:|^[\ \t]*#/{ | |
| $0 = $0" # "PC; | |
| PC++; | |
| }; | |
| {print}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 28,29c28,29 | |
| < DATDIR?= ${TUKDIR}/devel | |
| < MANDIR= ${DATDIR}/man | |
| --- | |
| > DATDIR?= ${TUKDIR} | |
| > MANDIR= ${LOCALBASE}/share/man | |
| 30,31c30,31 | |
| < HTMDIR= ${DATDIR}/html | |
| < PDFDIR= ${DATDIR}/pdf | |
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| \usepackage{tikz} | |
| \usetikzlibrary{positioning} | |
| \begin{document} | |
| \begin{tikzpicture}[auto] | |
| \node [circle,fill=red] (pl) {pipeline}; | |
| \node [above right=of pl,rectangle,fill=cyan] (ic) {icache}; | |
| \node [below right=of pl,rectangle,fill=cyan] (dc) {dcache}; | |
| \node [rectangle,fill=cyan,minimum height=5cm] at (5,0) (ab) {Arbie}; | |
| \node at (7,3) (ub) {}; |