This file contains 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
#Project file | |
PRJ=counter_tb.prj | |
#Compiled executable | |
EXE=counter_tb.exe | |
#TCL commands that will run in the simulator | |
CMD=isim.cmd | |
#Temporary Command file | |
CMDTMP=isim.tmp.cmd | |
#Waveform DataBase from simulation | |
WDB=isim.wdb |
This file contains 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
export PATH=$PATH:$XILINX_INSTALLATION/$XILINX_VERSION/ISE_DS/ISE/bin/lin64 | |
#XILINX_INSTALLATION is the path where you installed the Xilinx ISE Design Suite with xinstall | |
#XILINX_VERSION is the version of Xilinx ISE Design Suite installed |
This file contains 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
export LM_LICENSE_FILE=~/Download/XILINX_LICENCE.dat |
This file contains 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
Figura 1 | |
_____ | |
____/-----\______ | |
| __ __ | 1m | |
|_/ \_______/ \| <---------> Pista | |
_____\__/_______\__/_________________________ | |
T D | | | | |
P1 M P2 | |
Legenda |
This file contains 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
Figura 2 | |
Vcc _____ +---5khz--------------+ | |
_____ | | ffd | | _____ _____ | ______ | |
P1 --------| | +--|D | +-| | | con | | | com | | |
| AND |-----|> Q|--------| AND |----|> |--|--|X | | |
M --------|_____| | | /|\ |_____| | | | | | | |
| _____ |__R__| | ____ |__R__| +-o|> X<Y|--MF | |
+--|>--| | | | P1---| | | | | | |
| AND |--------+ | | AND|----+--------|R | | |
P2 --------|_____| | M----|____| | | |
This file contains 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
#include <stdio.h> | |
#define TAMANHO 128 | |
long converteBinario(char[]); | |
int tamanho(char[]); | |
int potencia2(int); | |
int main(int argc, char *argv[]){ | |
char input1[TAMANHO]; | |
char input2[TAMANHO]; |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#define TAMANHO 128 | |
int converteBinarioDecimal(char[]); | |
char* converteDecimalTernario(int); | |
char* inverteVetor(char * vetor); | |
int tamanho(char[]); | |
int potencia2(int); |
This file contains 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
<link rel="import" href="../ace-element/ace-element.html"> | |
<link rel="import" href="../topeka-elements/theme.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-app.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
This file contains 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
PDF=pdflatex | |
IDX=makeindex | |
BIB=bibtex | |
READ=evince | |
MAKE=make clean-clutter | |
%.pdf: %.tex %.idx | |
@echo 'Building $@ dependencies $?' | |
$(IDX) $(@:.pdf=.idx) | |
$(BIB) $(@:.pdf= ) |
This file contains 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
# Testing Ruby's method visibility with Modules | |
module A | |
def public_method | |
puts :public_method | |
end | |
protected | |
def protected_method | |
puts :protected_method |
OlderNewer