Skip to content

Instantly share code, notes, and snippets.

View gceylan's full-sized avatar
🏠
Working from home

Gökhan CEYLAN gceylan

🏠
Working from home
View GitHub Profile
@gceylan
gceylan / cpu.v
Created May 26, 2012 13:38
Basit bir işlemci
module cpu (KEY, SW, LEDR);
input [1:0] KEY;
input [17:0] SW;
output [17:0] LEDR;
wire Resetn, Manual_Clock, Run, Done;
wire [15:0] DIN, Bus;
assign Resetn = KEY[0];
assign Manual_Clock = KEY[1];
@gceylan
gceylan / t.rb
Created May 24, 2012 21:33 — forked from roktas/t.rb
#!/usr/bin/ruby
# encoding: utf-8
# DİKKAT! Fazla test edilmemiştir. İki çay/sigara arası yazılmıştır. Daha
# iyisini siz yazın. -- roktas
class Arac
attr_reader :hiz, :vites_konumu, :yolcu_sayisi
def initialize(yolcu=1)