Skip to content

Commit

Permalink
feat(examples): add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed May 21, 2024
1 parent 749b8a2 commit 940c879
Show file tree
Hide file tree
Showing 3 changed files with 2,308 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/examples/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { Project } from './Project';
import { balls } from './balls';
import { stripes } from './stripes';

export const examples: Project[] = [stripes, balls];
export const examples: Project[] = [stripes, balls, logo];
12 changes: 12 additions & 0 deletions src/examples/logo/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import hvsync_generator_v from '../common/hvsync_generator.v?raw';
import project_v from './project.v?raw';

export const logo = {
name: 'Logo',
author: 'Uri Shaked',
topModule: 'tt_um_vga_example',
sources: {
'project.v': project_v,
'hvsync_generator.v': hvsync_generator_v,
},
};
Loading

0 comments on commit 940c879

Please sign in to comment.